chore(libc/musl): remove unused `ffs` impls
* forgot to remove them in the previous PR
3 files changed, 0 insertions(+), 21 deletions(-)
lib
libc
lib/libc/musl/src/misc/ffs.c deleted-7
| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | | #include <strings.h> |
| 2 | | #include "atomic.h" |
| 3 | | |
| 4 | | int ffs(int i) |
| 5 | | { |
| 6 | | 	return i ? a_ctz_l(i)+1 : 0; |
| 7 | | } |
lib/libc/musl/src/misc/ffsl.c deleted-7
| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | | #include <strings.h> |
| 2 | | #include "atomic.h" |
| 3 | | |
| 4 | | int ffsl(long i) |
| 5 | | { |
| 6 | | 	return i ? a_ctz_l(i)+1 : 0; |
| 7 | | } |
lib/libc/musl/src/misc/ffsll.c deleted-7
| ... | ... | @@ -1,7 +0,0 @@ |
| 1 | | #include <strings.h> |
| 2 | | #include "atomic.h" |
| 3 | | |
| 4 | | int ffsll(long long i) |
| 5 | | { |
| 6 | | 	return i ? a_ctz_64(i)+1 : 0; |
| 7 | | } |