summaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/socket.c b/socket.c
index 4446253..b562fd5 100644
--- a/socket.c
+++ b/socket.c
@@ -52,9 +52,17 @@
#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
+/* added by Denys Duchier: for bzero */
+#ifdef sun
+# include <strings.h>
+#endif
#ifndef STDC_HEADERS
int close P((int fd));
+#else /* added by Denys Duchier */
+# ifdef SVR4
+# include <unistd.h>
+# endif
#endif /* STDC_HEADERS */
static char s_inetaddr[] = "inet:string->address";