From afb85e9d6ca1de8f1ecb267e8c30b88ba4382820 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 6 Jul 2000 07:16:59 +0000 Subject: Rework all the string handling. Make const stuff be constified. -Erik --- libc/string/strsep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/string/strsep.c') 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 + char * strsep(pp, delim) char **pp; -char *delim; +const char *delim; { char *p, *q; -- cgit v1.2.3