From 54269d88509de86642003e926af75b16420c17a1 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Wed, 28 Jul 1999 13:33:18 +0000 Subject: [PATCH] (inet_pton): add prototype git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@6621 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 b6bc73790..044641ebe 100644 --- a/lib/roken/roken.h.in +++ b/lib/roken/roken.h.in @@ -250,6 +250,11 @@ const char * inet_ntop(int af, const void *src, char *dst, size_t size); #endif +#ifndef HAVE_INET_PTON +int +inet_pton(int af, const char *src, void *dst); +#endif + #if !defined(HAVE_GETCWD) char* getcwd(char *path, size_t size); #endif