diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-01 17:34:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-01 17:34:44 +0000 |
commit | 9ed32aae0cceb23373b55a319a3483728a1042d7 (patch) | |
tree | 8e5b16d949224ecd3bd0c7c1b760194de74d2761 /daemon.c | |
parent | 6d77e3b3e9a420477e69ed84ede49ed3c983ac83 (diff) | |
download | fetchmail-9ed32aae0cceb23373b55a319a3483728a1042d7.tar.gz fetchmail-9ed32aae0cceb23373b55a319a3483728a1042d7.tar.bz2 fetchmail-9ed32aae0cceb23373b55a319a3483728a1042d7.zip |
Header cleanup.
svn path=/trunk/; revision=463
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -7,18 +7,14 @@ #include <config.h> #include <stdio.h> +#include <signal.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/file.h> -#include <signal.h> -#include <fcntl.h> - -#if defined(HAVE_SYS_WAIT_H) -# include <sys/wait.h> -#endif +#include <sys/wait.h> #if defined(HAVE_UNISTD_H) -# include <unistd.h> +#include <unistd.h> #endif #if defined(STDC_HEADERS) @@ -26,7 +22,7 @@ #endif #if defined(QNX) -# include <unix.h> +#include <unix.h> #endif /* BSD portability hack */ |