Home | History | Annotate | Line # | Download | only in string
      1 /* $NetBSD: ffs.c,v 1.1 2014/09/19 17:36:24 matt Exp $ */
      2 
      3 #include <sys/cdefs.h>
      4 
      5 __strong_alias(ffs, __ffssi2);
      6 int	__ffssi2(int);
      7 
      8 int
      9 __ffssi2(int i)
     10 {
     11 	return i == 0 ? 0 : __buildint_ctz(i) + 1;
     12 }
     13