diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-04-29 21:28:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-04-29 21:28:57 +0000 |
commit | 215a3549f46eeef56bb81cf9b75fc133ab610219 (patch) | |
tree | 84507fe1a6aa0fcfdb1ddf25198d32046505c83d /fetchmail.c | |
parent | 96f6a69101a3b29e0086b8b19b17a462bd889914 (diff) | |
download | fetchmail-215a3549f46eeef56bb81cf9b75fc133ab610219.tar.gz fetchmail-215a3549f46eeef56bb81cf9b75fc133ab610219.tar.bz2 fetchmail-215a3549f46eeef56bb81cf9b75fc133ab610219.zip |
Hacks for avoiding compiler warnings under SunOS.
svn path=/trunk/; revision=978
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fetchmail.c b/fetchmail.c index 172eb17e..f94ba8ee 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -33,6 +33,10 @@ #include <netdb.h> #endif /* HAVE_GETHOSTBYNAME */ +#ifdef SUNOS +#include <stdlib.h> +#endif + #include "fetchmail.h" #include "tunable.h" #include "smtp.h" |