diff options
Diffstat (limited to 'src/strings/ffs.c')
| -rw-r--r-- | src/strings/ffs.c | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/src/strings/ffs.c b/src/strings/ffs.c deleted file mode 100644 index 8c37ed0b..00000000 --- a/src/strings/ffs.c +++ /dev/null @@ -1,25 +0,0 @@ -#if 0 - -#include <strings.h> - -int ffs(int i) -{ - int bit = 0; - - if (i == 0) { - return 0; - } - - while (!(i & (1 << bit))) { - bit++; - } - - return bit; -} - -/* -XOPEN(400) -*/ - - -#endif |
