diff options
Diffstat (limited to 'NetWare/nw5sck.c')
-rw-r--r-- | NetWare/nw5sck.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/NetWare/nw5sck.c b/NetWare/nw5sck.c index c1a42fea80..91b8afd14b 100644 --- a/NetWare/nw5sck.c +++ b/NetWare/nw5sck.c @@ -25,6 +25,11 @@ #include <fcntl.h> #include <sys/stat.h> +// This is defined here since arpa\inet.h defines this array as an extern, +// and arpa\inet.h gets included by the inet_ntoa call. +char nwinet_scratch[18] = {'\0'}; + + u_long nw_htonl(u_long hostlong) { @@ -225,6 +230,12 @@ nw_inet_addr(const char *cp) return inet_addr((char*)cp); } +char * +nw_inet_ntoa(struct in_addr in) +{ + return inet_ntoa(in); +} + SOCKET nw_socket(int af, int type, int protocol) { |