diff options
Diffstat (limited to 'lib/libc/string/index.c')
-rw-r--r-- | lib/libc/string/index.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libc/string/index.c b/lib/libc/string/index.c index 86c4e75f122..8e4b1464933 100644 --- a/lib/libc/string/index.c +++ b/lib/libc/string/index.c @@ -32,18 +32,17 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: index.c,v 1.2 1996/08/19 08:34:02 tholo Exp $"; +static char *rcsid = "$OpenBSD: index.c,v 1.3 2002/07/24 04:16:01 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <string.h> char * #ifdef STRCHR -strchr(p, ch) +strchr(const char *p, int ch) #else -index(p, ch) +index(const char *p, int ch) #endif - register const char *p, ch; { for (;; ++p) { if (*p == ch) |