From 1196344bb37334ed0f8808056a53ca058758843c Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 21 Mar 2002 18:49:23 +0000 Subject: Remove 'register' keyword. --- lib/libc/string/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/string/index.c') diff --git a/lib/libc/string/index.c b/lib/libc/string/index.c index 1f7973a..7eaf3d7 100644 --- a/lib/libc/string/index.c +++ b/lib/libc/string/index.c @@ -46,7 +46,7 @@ strchr(p, ch) #else index(p, ch) #endif - register const char *p, ch; + const char *p, ch; { for (;; ++p) { if (*p == ch) -- cgit v1.1