summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1996-08-01 20:31:45 +0000
committerwollman <wollman@FreeBSD.org>1996-08-01 20:31:45 +0000
commit4bb22fb225d8af92ab935563ee2283a1aac56fd6 (patch)
tree7a664065679a92cea444fa35b75e0ec51db81004
parent6480d29561746e2826a73d11bb0b3ccf2c13e944 (diff)
downloadFreeBSD-src-4bb22fb225d8af92ab935563ee2283a1aac56fd6.zip
FreeBSD-src-4bb22fb225d8af92ab935563ee2283a1aac56fd6.tar.gz
Declare fls() for the non-inline case. Defer writing the generic version
until it actually matters.
-rw-r--r--sys/sys/libkern.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/libkern.h b/sys/sys/libkern.h
index f87294a..7268a1e 100644
--- a/sys/sys/libkern.h
+++ b/sys/sys/libkern.h
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)libkern.h 8.1 (Berkeley) 6/10/93
- * $Id: libkern.h,v 1.10 1996/04/19 17:39:57 bde Exp $
+ * $Id: libkern.h,v 1.11 1996/06/08 06:32:48 nate Exp $
*/
#ifndef _SYS_LIBKERN_H_
@@ -65,6 +65,9 @@ int bcmp __P((const void *, const void *, size_t));
#ifndef HAVE_INLINE_FFS
int ffs __P((int));
#endif
+#ifndef HAVE_INLINE_FLS
+int fls __P((int));
+#endif
int locc __P((int, char *, u_int));
void qsort __P((void *base, size_t nmemb, size_t size,
int (*compar)(const void *, const void *)));
OpenPOWER on IntegriCloud