aboutsummaryrefslogtreecommitdiffstats
path: root/src/strings/ffs.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/strings/ffs.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/strings/ffs.c b/src/strings/ffs.c
index b0a6481..a55d980 100644
--- a/src/strings/ffs.c
+++ b/src/strings/ffs.c
@@ -29,27 +29,3 @@ int ffs(int i)
return __builtin_ffs(i);
}
-
-/**
- * Find the first set bit in an integer.
- *
- * @param i The integer
- * @return The value of the least significant set bit, zero if none.
- */
-int ffsl(long i)
-{
- return __builtin_ffsl(i);
-}
-
-
-/**
- * Find the first set bit in an integer.
- *
- * @param i The integer
- * @return The value of the least significant set bit, zero if none.
- */
-int ffsll(long long i)
-{
- return __builtin_ffsll(i);
-}
-