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