fix prototype for strsep
authorRich Felker <dalias@aerifal.cx>
Wed, 6 Apr 2011 18:28:29 +0000 (14:28 -0400)
committerRich Felker <dalias@aerifal.cx>
Wed, 6 Apr 2011 18:28:29 +0000 (14:28 -0400)
include/string.h
src/string/strsep.c

index bd195e3ffae6c24817b483413720ce32de0d3265..c755c601530d9829f1ad6a5dc609697d17782f13 100644 (file)
@@ -73,7 +73,7 @@ int strcasecmp (const char *, const char *);
 int strncasecmp (const char *, const char *, size_t);
 char *strchrnul(const char *, int);
 char *strcasestr(const char *, const char *);
-char *strsep(char **, char *);
+char *strsep(char **, const char *);
 #endif
 
 #ifdef __cplusplus
index 1bfe1db1cc23bc666c667e27d7f5760ca99f79b2..cb37c32eb852b9318c40d1feb5f9259660f13b71 100644 (file)
@@ -1,3 +1,4 @@
+#define _GNU_SOURCE
 #include <string.h>
 
 char *strsep(char **str, const char *sep)