diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-16 23:23:36 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-16 23:23:36 +0000 |
commit | b2444bca4a8d065cb98036f2ff80f320e24fae91 (patch) | |
tree | 43440ff9f2e741174af38800445d100b0a76948c | |
parent | c89bc3e0a6785c87f174df46115ef5e1a87ee14a (diff) | |
download | fetchmail-b2444bca4a8d065cb98036f2ff80f320e24fae91.tar.gz fetchmail-b2444bca4a8d065cb98036f2ff80f320e24fae91.tar.bz2 fetchmail-b2444bca4a8d065cb98036f2ff80f320e24fae91.zip |
General cleanup for 2.0 release.
svn path=/trunk/; revision=547
-rw-r--r-- | fetchmail.c | 5 | ||||
-rw-r--r-- | pop3.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index b10da556..5e39b4dc 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -7,6 +7,7 @@ #include <config.h> #include <stdio.h> +#include <ctype.h> #if defined(STDC_HEADERS) #include <stdlib.h> #endif @@ -17,12 +18,16 @@ #include <signal.h> #include <pwd.h> #include <sys/time.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/wait.h> #ifdef HAVE_GETHOSTBYNAME #include <netdb.h> #endif /* HAVE_GETHOSTBYNAME */ #include "fetchmail.h" +#include "smtp.h" #include "getopt.h" #define DROPDEAD 6 /* maximum bad socket opens */ @@ -8,6 +8,7 @@ #include <stdio.h> #include <string.h> +#include <ctype.h> #if defined(HAVE_UNISTD_H) #include <unistd.h> #endif |