diff options
Diffstat (limited to 'lib/libc/string/strncmp.c')
| -rw-r--r-- | lib/libc/string/strncmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strncmp.c b/lib/libc/string/strncmp.c index fff21f9ac0bd..60d09c15a740 100644 --- a/lib/libc/string/strncmp.c +++ b/lib/libc/string/strncmp.c @@ -41,8 +41,8 @@ __FBSDID("$FreeBSD$"); int strncmp(s1, s2, n) - register const char *s1, *s2; - register size_t n; + const char *s1, *s2; + size_t n; { if (n == 0) |
