diff options
Diffstat (limited to 'lib/libc/string/ffs.c')
-rw-r--r-- | lib/libc/string/ffs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c index de4480a7efd..a75fd9d79f8 100644 --- a/lib/libc/string/ffs.c +++ b/lib/libc/string/ffs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs.c,v 1.8 2014/06/10 04:17:37 deraadt Exp $ */ +/* $OpenBSD: ffs.c,v 1.9 2015/08/31 02:53:57 guenther Exp $ */ /* * Public domain. @@ -38,3 +38,4 @@ ffs(int mask) return (bit + t[ r & 0xf ]); } +DEF_WEAK(ffs); |