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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c
index a75fd9d79f8..09d6e35eca2 100644
--- a/lib/libc/string/ffs.c
+++ b/lib/libc/string/ffs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */
+/* $OpenBSD: ffs.c,v 1.10 2018/01/18 08:23:44 guenther Exp $ */
/*
* Public domain.
@@ -38,4 +38,3 @@ ffs(int mask)
return (bit + t[ r & 0xf ]);
}
-DEF_WEAK(ffs);