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/strcasecmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libc/string/strcasecmp.c') diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c index 0e7b0388f..c6144ff23 100644 --- a/libc/string/strcasecmp.c +++ b/libc/string/strcasecmp.c @@ -8,8 +8,8 @@ int strcasecmp(s, d) -char *s; -char *d; +const char *s; +const char *d; { for(;;) { -- cgit v1.2.3