/*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. * * This code is derived from software contributed to Berkeley by * Margo Seltzer. * * %sccs.include.redist.c% */ #if defined(LIBC_SCCS) && !defined(lint) static char sccsid[] = "@(#)hash_log2.c 5.4 (Berkeley) 09/26/91"; #endif /* LIBC_SCCS and not lint */ #include u_int __log2(num) u_int num; { register u_int i, limit; limit = 1; for (i = 0; limit < num; limit = limit << 1, i++); return (i); }