diff options
Diffstat (limited to 'otherlibs/unix/strofaddr.c')
-rw-r--r-- | otherlibs/unix/strofaddr.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/otherlibs/unix/strofaddr.c b/otherlibs/unix/strofaddr.c deleted file mode 100644 index 3407989462..0000000000 --- a/otherlibs/unix/strofaddr.c +++ /dev/null @@ -1,24 +0,0 @@ -#include <mlvalues.h> -#include <alloc.h> -#include "unix.h" - -#ifdef HAS_SOCKETS - -#include "socketaddr.h" - -extern char * inet_ntoa(); - -value unix_string_of_inet_addr(a) /* ML */ - value a; -{ - struct in_addr address; - address.s_addr = GET_INET_ADDR(a); - return copy_string(inet_ntoa(address)); -} - -#else - -value unix_string_of_inet_addr() -{ invalid_argument("string_of_inet_addr not implemented"); } - -#endif |