#endif /* HAVE_GETUTXENT */
exit (RCV_MOK);
- return 0; /* dead code to satisfy the compiler */
}
message_fd (char **vec)
{
pid_t child_id;
- int bytes, fd, seconds;
+ int bytes, seconds;
+ /* volatile to prevent "might be clobbered" warning from gcc: */
+ volatile int fd;
char tmpfil[BUFSIZ];
struct stat st;
setpgid ((pid_t) 0, getpid ()); /* put in own process group */
execvp (vec[0], vec);
_exit (-1);
- return 1; /* dead code to satisfy compiler */
}