Declare fls() for the non-inline case. Defer writing the generic version

until it actually matters.
This commit is contained in:
wollman 1996-08-01 20:31:45 +00:00
parent 6480d29561
commit 4bb22fb225

View File

@ -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 *)));