From 74c4ca2825160730f6c7bde244d90d51023b5890 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 26 Jul 1999 10:13:48 +0000 Subject: [PATCH] (inet_ntop): add prototype git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6579 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/roken.h.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/roken/roken.h.in b/lib/roken/roken.h.in index 19b38c325..b6bc73790 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -245,6 +245,11 @@ extern int h_errno; int inet_aton(const char *cp, struct in_addr *adr); #endif +#ifndef HAVE_INET_NTOP +const char * +inet_ntop(int af, const void *src, char *dst, size_t size); +#endif + #if !defined(HAVE_GETCWD) char* getcwd(char *path, size_t size); #endif