summaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorRob Browning <rlb@cs.utexas.edu>1997-12-12 17:29:42 -0600
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:24 -0800
commitf64b2806c1d66a1341bb8b1491f384169ab1d65f (patch)
tree8b97dbe3640c60927959b0e63461ef9fcae591e0 /socket.c
parent6dcb175d7f34d9f5a0b3ba623f94454ec16a73d6 (diff)
parent1edcb9b62a1a520eddae8403c19d841c9b18737f (diff)
downloadscm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.tar.gz
scm-f64b2806c1d66a1341bb8b1491f384169ab1d65f.zip
Import Debian changes 5b3-1debian/5b3-1
scm (5b3-1) unstable; urgency=low * New maintainer * New version * libc6
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";