summaryrefslogtreecommitdiff
path: root/libc/string/strsep.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strsep.c')
-rw-r--r--libc/string/strsep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/strsep.c b/libc/string/strsep.c
index 703fe5c69..f4fdf503e 100644
--- a/libc/string/strsep.c
+++ b/libc/string/strsep.c
@@ -18,10 +18,11 @@ Cambridge, MA 02139, USA. */
#include <string.h>
+
char *
strsep(pp, delim)
char **pp;
-char *delim;
+const char *delim;
{
char *p, *q;