From: Daniel Stenberg Date: Tue, 27 Apr 2004 14:17:36 +0000 (+0000) Subject: provide our own inet_ntoa_r() proto if the system has none on its own X-Git-Tag: curl-7_12_0~258 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b0a5c4050fcd95241c816753cd2c6090a8cbc9e;p=thirdparty%2Fcurl.git provide our own inet_ntoa_r() proto if the system has none on its own --- diff --git a/lib/inet_ntop.c b/lib/inet_ntop.c index 22c053e17f..9dfccb3c6c 100644 --- a/lib/inet_ntop.c +++ b/lib/inet_ntop.c @@ -26,6 +26,12 @@ #include "inet_ntop.h" +#if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL) +/* this platform has a inet_ntoa_r() function, but no proto declared anywhere + so we include our own proto to make compilers happy */ +#include "inet_ntoa_r.h" +#endif + #define IN6ADDRSZ 16 #define INADDRSZ 4 #define INT16SZ 2