diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-11-30 09:29:31 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-11-30 09:29:31 +0000 |
commit | b84d947be493c93589c1234bb03ffdec801739eb (patch) | |
tree | a32552e4fe37c8f6d611dcb39d88991434903231 /src | |
parent | 07c67138c9d4ee437b02d1e5d50f64327f362642 (diff) |
no include, no const in strdup
Diffstat (limited to 'src')
-rw-r--r-- | src/config-mac.h | 4 |
1 files changed, 1 insertions, 3 deletions
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); |