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 /fetchmail.c | |
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
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 5 |
1 files changed, 5 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 */ |