summaryrefslogtreecommitdiff
path: root/lib/libc/string/ffs.c
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1995-06-15 00:07:11 +0000
committerjtc <jtc@NetBSD.org>1995-06-15 00:07:11 +0000
commit752ff8fb6caa0804c7087628a4abd895d105e052 (patch)
treee15b0c86c0c55adeac53bfef6def62d016fbf3a8 /lib/libc/string/ffs.c
parentb5f782e810aa16d949b1c64fae69216d83e26666 (diff)
don't include <sys/cdefs.h>, it's a 'private' header
Diffstat (limited to 'lib/libc/string/ffs.c')
-rw-r--r--lib/libc/string/ffs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/string/ffs.c b/lib/libc/string/ffs.c
index fcdf933500a..752ad4bf6d5 100644
--- a/lib/libc/string/ffs.c
+++ b/lib/libc/string/ffs.c
@@ -33,7 +33,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)ffs.c 5.4 (Berkeley) 5/17/90";*/
-static char *rcsid = "$Id: ffs.c,v 1.3 1993/08/26 00:51:38 jtc Exp $";
+static char *rcsid = "$Id: ffs.c,v 1.4 1995/06/15 00:07:20 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#include <string.h>
@@ -41,6 +41,7 @@ static char *rcsid = "$Id: ffs.c,v 1.3 1993/08/26 00:51:38 jtc Exp $";
/*
* ffs -- vax ffs instruction
*/
+int
ffs(mask)
register int mask;
{