From 1fee6186fed608ba61257e04355b5b24bd859a05 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 6 Apr 2011 14:28:29 -0400 Subject: fix prototype for strsep --- include/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/string.h b/include/string.h index bd195e3f..c755c601 100644 --- a/include/string.h +++ b/include/string.h @@ -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 -- cgit v1.2.1