chore(libc/musl): remove unused ffs impls

* forgot to remove them in the previous PR
This commit is contained in:
GasInfinity 2026-01-20 23:14:23 +01:00
parent e6ac1b77f0
commit f67d21f736
No known key found for this signature in database
3 changed files with 0 additions and 21 deletions

View file

@ -1,7 +0,0 @@
#include <strings.h>
#include "atomic.h"
int ffs(int i)
{
return i ? a_ctz_l(i)+1 : 0;
}

View file

@ -1,7 +0,0 @@
#include <strings.h>
#include "atomic.h"
int ffsl(long i)
{
return i ? a_ctz_l(i)+1 : 0;
}

View file

@ -1,7 +0,0 @@
#include <strings.h>
#include "atomic.h"
int ffsll(long long i)
{
return i ? a_ctz_64(i)+1 : 0;
}