diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-07-06 07:16:59 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-07-06 07:16:59 +0000 |
commit | afb85e9d6ca1de8f1ecb267e8c30b88ba4382820 (patch) | |
tree | e6b9c1e2d2b9ec890cf832dc0973231dace674c2 /libc/string/strsep.c | |
parent | 6811c064139574e2e2e07fdeb10218428cd68b36 (diff) |
Rework all the string handling. Make const stuff be constified.
-Erik
Diffstat (limited to 'libc/string/strsep.c')
-rw-r--r-- | libc/string/strsep.c | 3 |
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; |