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/memcmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libc/string/memcmp.c') diff --git a/lib/libc/string/memcmp.c b/lib/libc/string/memcmp.c index 9711308..6b28c31 100644 --- a/lib/libc/string/memcmp.c +++ b/lib/libc/string/memcmp.c @@ -51,7 +51,7 @@ memcmp(s1, s2, n) size_t n; { if (n != 0) { - register const unsigned char *p1 = s1, *p2 = s2; + const unsigned char *p1 = s1, *p2 = s2; do { if (*p1++ != *p2++) -- cgit v1.1