rt-mailgate.c 369 B

12345678910111213141516171819202122
  1. #include <sys/types.h>
  2. #include <unistd.h>
  3. #define DIR "@l_prefix@/libexec/rt"
  4. #define PROG "@l_prefix@/libexec/rt/tools/rt-mailgate"
  5. int main(int argc, char *argv[])
  6. {
  7. static char *const myenv[] = {
  8. "PATH=/bin:/usr/bin",
  9. NULL
  10. };
  11. if (chdir(DIR) == -1) {
  12. perror("chdir");
  13. exit(1);
  14. }
  15. execve(PROG, argv, myenv);
  16. }