Module Name: src
Committed By: joerg
Date: Wed Aug 5 16:08:00 UTC 2009
Modified Files:
src/lib/libc/string: Lint_ffs.c
Log Message:
ffs(3) lives in strings.h, so include the correct header. ANSIfy.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libc/string/Lint_ffs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/string/Lint_ffs.c
diff -u src/lib/libc/string/Lint_ffs.c:1.2 src/lib/libc/string/Lint_ffs.c:1.3
--- src/lib/libc/string/Lint_ffs.c:1.2 Wed Jun 14 06:49:07 2000
+++ src/lib/libc/string/Lint_ffs.c Wed Aug 5 16:08:00 2009
@@ -1,16 +1,15 @@
-/* $NetBSD: Lint_ffs.c,v 1.2 2000/06/14 06:49:07 cgd Exp $ */
+/* $NetBSD: Lint_ffs.c,v 1.3 2009/08/05 16:08:00 joerg Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
-#include <string.h>
+#include <strings.h>
/*ARGSUSED*/
int
-ffs(value)
- int value;
+ffs(int value)
{
return(0);
}