diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-03 19:35:00 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-03 19:35:00 +0000 |
commit | 5c29fed4f72c7558ae15ed2c0b1268bab61a0321 (patch) | |
tree | e7c25b4c5c585d85d9b3c95d75367e52f2c27205 /daemon.c | |
parent | fca5b6d8eeebbb9782df5dc22e17ef2ca1c1e9ad (diff) | |
download | fetchmail-5c29fed4f72c7558ae15ed2c0b1268bab61a0321.tar.gz fetchmail-5c29fed4f72c7558ae15ed2c0b1268bab61a0321.tar.bz2 fetchmail-5c29fed4f72c7558ae15ed2c0b1268bab61a0321.zip |
sysV68 R3V7.1 port changes.
svn path=/trunk/; revision=1282
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -13,10 +13,11 @@ #include <sys/wait.h> #ifdef HAVE_FCNTL_H #include <fcntl.h> -#endif /* HAVE_FCNTL_H */ +#else /* !HAVE_FCNTL_H */ #ifdef HAVE_SYS_FCNTL_H #include <sys/fcntl.h> #endif /* HAVE_SYS_FCNTL_H */ +#endif /* !HAVE_FCNTL_H */ #include <sys/stat.h> /* get umask(2) prototyped */ #if defined(HAVE_UNISTD_H) |