Deleted Added
full compact
29c29
< * $FreeBSD: stable/10/sys/i386/include/cpufunc.h 276084 2014-12-22 21:32:39Z jhb $
---
> * $FreeBSD: stable/10/sys/i386/include/cpufunc.h 289818 2015-10-23 10:05:43Z avg $
186a187,194
> #define HAVE_INLINE_FFSL
>
> static __inline int
> ffsl(long mask)
> {
> return (ffs((int)mask));
> }
>
194a203,210
> #define HAVE_INLINE_FLSL
>
> static __inline int
> flsl(long mask)
> {
> return (fls((int)mask));
> }
>