diff options
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 */ |