aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-04-29 21:28:57 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-04-29 21:28:57 +0000
commit215a3549f46eeef56bb81cf9b75fc133ab610219 (patch)
tree84507fe1a6aa0fcfdb1ddf25198d32046505c83d /socket.c
parent96f6a69101a3b29e0086b8b19b17a462bd889914 (diff)
downloadfetchmail-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 'socket.c')
-rw-r--r--socket.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/socket.c b/socket.c
index e5b9ba5c..b8a60de0 100644
--- a/socket.c
+++ b/socket.c
@@ -34,6 +34,10 @@
#endif
#endif
+#ifdef SUNOS
+#include <memory.h>
+#endif
+
FILE *SockOpen(char *host, int clientPort)
{
int sock;