summaryrefslogtreecommitdiff
path: root/gpxe/src/core/bitops.c
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/src/core/bitops.c')
-rw-r--r--gpxe/src/core/bitops.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gpxe/src/core/bitops.c b/gpxe/src/core/bitops.c
deleted file mode 100644
index 1bca9e47..00000000
--- a/gpxe/src/core/bitops.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include <strings.h>
-
-FILE_LICENCE ( GPL2_OR_LATER );
-
-int __flsl ( long x ) {
- unsigned long value = x;
- int ls = 0;
-
- for ( ls = 0 ; value ; ls++ ) {
- value >>= 1;
- }
- return ls;
-}