diff options
author | Robert Drehmel <robert@FreeBSD.org> | 2002-08-30 19:08:53 +0000 |
---|---|---|
committer | Robert Drehmel <robert@FreeBSD.org> | 2002-08-30 19:08:53 +0000 |
commit | 554331bbb9fe7d143663402be8c0a7bd3e7a35cc (patch) | |
tree | 60d3aa23dc3bac361b836666813fc869948bf35e | |
parent | e211c13e86ba3d86047670d81c757972ce3f6a61 (diff) |
Notes
-rw-r--r-- | lib/libc/string/ffs.3 | 9 | ||||
-rw-r--r-- | lib/libc/string/ffs.c | 5 |
2 files changed, 10 insertions, 4 deletions
diff --git a/lib/libc/string/ffs.3 b/lib/libc/string/ffs.3 index 71e13b2a617e4..fd4de44b19531 100644 --- a/lib/libc/string/ffs.3 +++ b/lib/libc/string/ffs.3 @@ -43,7 +43,7 @@ .Sh LIBRARY .Lb libc .Sh SYNOPSIS -.In string.h +.In strings.h .Ft int .Fn ffs "int value" .Sh DESCRIPTION @@ -62,3 +62,10 @@ The .Fn ffs function appeared in .Bx 4.3 . +Its prototype existed previously in +.Aq Pa string.h +before it was moved to +.Aq Pa strings.h +for +.St -p1003.1-2001 +compliance. diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c index 14985a4e7bf33..f08e0d124e330 100644 --- a/lib/libc/string/ffs.c +++ b/lib/libc/string/ffs.c @@ -37,14 +37,13 @@ static char sccsid[] = "@(#)ffs.c 8.1 (Berkeley) 6/4/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); -#include <string.h> +#include <strings.h> /* * ffs -- vax ffs instruction */ int -ffs(mask) - int mask; +ffs(int mask) { int bit; |