From: Daniel Stenberg Date: Fri, 30 Nov 2001 09:29:31 +0000 (+0000) Subject: no include, no const in strdup X-Git-Tag: curl-7_9_2~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b84d947be493c93589c1234bb03ffdec801739eb;p=curl no include, no const in strdup --- diff --git a/src/config-mac.h b/src/config-mac.h index 949a22f64..9e8daf0e4 100644 --- a/src/config-mac.h +++ b/src/config-mac.h @@ -1,6 +1,4 @@ -#include "GUSICommandLine.h" - #define main(x,y) curl_main(x,y) /* we provide our own strdup prototype */ -char *strdup(const char *s1); +char *strdup(char *s1);