summaryrefslogtreecommitdiff
path: root/lib/libc/string/ffs.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/ffs.c')
-rw-r--r--lib/libc/string/ffs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c
index 231bc259f99f..14985a4e7bf3 100644
--- a/lib/libc/string/ffs.c
+++ b/lib/libc/string/ffs.c
@@ -44,9 +44,9 @@ __FBSDID("$FreeBSD$");
*/
int
ffs(mask)
- register int mask;
+ int mask;
{
- register int bit;
+ int bit;
if (mask == 0)
return(0);