diff options
Diffstat (limited to 'lib/libc/string/strlen.c')
| -rw-r--r-- | lib/libc/string/strlen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strlen.c b/lib/libc/string/strlen.c index 96076af4d8cb..841c7c24792a 100644 --- a/lib/libc/string/strlen.c +++ b/lib/libc/string/strlen.c @@ -43,7 +43,7 @@ size_t strlen(str) const char *str; { - register const char *s; + const char *s; for (s = str; *s; ++s); return(s - str); |
