about summary refs log tree commit diff
path: root/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'string/strrchr.c')
-rw-r--r--string/strrchr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strrchr.c b/string/strrchr.c
index 2bf34991e8..bdec841c87 100644
--- a/string/strrchr.c
+++ b/string/strrchr.c
@@ -23,7 +23,7 @@
 char *
 strrchr (const char *s, int c)
 {
-  register const char *found, *p;
+  const char *found, *p;
 
   c = (unsigned char) c;