diff options
Diffstat (limited to 'lib/libc/string/bcmp.c')
-rw-r--r-- | lib/libc/string/bcmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/bcmp.c b/lib/libc/string/bcmp.c index 6fd1265..013d0d6 100644 --- a/lib/libc/string/bcmp.c +++ b/lib/libc/string/bcmp.c @@ -45,9 +45,9 @@ __FBSDID("$FreeBSD$"); int bcmp(b1, b2, length) const void *b1, *b2; - register size_t length; + size_t length; { - register char *p1, *p2; + char *p1, *p2; if (length == 0) return(0); |