aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-16 23:23:36 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-16 23:23:36 +0000
commitb2444bca4a8d065cb98036f2ff80f320e24fae91 (patch)
tree43440ff9f2e741174af38800445d100b0a76948c
parentc89bc3e0a6785c87f174df46115ef5e1a87ee14a (diff)
downloadfetchmail-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.c5
-rw-r--r--pop3.c1
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 */
diff --git a/pop3.c b/pop3.c
index 2b771914..79260f16 100644
--- a/pop3.c
+++ b/pop3.c
@@ -8,6 +8,7 @@
#include <stdio.h>
#include <string.h>
+#include <ctype.h>
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif