Adding debian version 3.70~pre8+dfsg-1.
[syslinux-debian/hramrach.git] / gpxe / src / core / bitops.c
blob53abaaeac1416eb573f91cf251b1f85d5d79c7a0
1 #include <strings.h>
3 int __flsl ( long x ) {
4 unsigned long value = x;
5 int ls = 0;
7 for ( ls = 0 ; value ; ls++ ) {
8 value >>= 1;
10 return ls;