diff options
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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"; |