From: Daniel Stenberg Date: Fri, 2 Dec 2005 23:22:45 +0000 (+0000) Subject: Yang Tse's fix to only provide the proto if there is such a function and X-Git-Tag: curl-7_15_1~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c312637d1875602bdb8f69c6e9741ffc5d4e5af;p=curl Yang Tse's fix to only provide the proto if there is such a function and we didn't find any proto --- diff --git a/lib/strerror.c b/lib/strerror.c index 4edd28ac7..216ac2964 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -42,7 +42,7 @@ #define _MPRINTF_REPLACE /* use our functions only */ #include -#ifdef HAVE_NO_STRERROR_R_DECL +#if defined(HAVE_STRERROR_R) && defined(HAVE_NO_STRERROR_R_DECL) #ifdef HAVE_POSIX_STRERROR_R /* seen on AIX 5100-02 gcc 2.9 */ extern int strerror_r(int errnum, char *strerrbuf, size_t buflen);