Files
fx/core/sys/linux/bitop.c

17 lines
193 B
C
Raw Normal View History

2026-03-16 10:35:43 +00:00
#include <fx/core/bitop.h>
2026-03-16 10:35:43 +00:00
int fx_popcountl(long v)
{
return __builtin_popcountl(v);
}
2026-03-16 10:35:43 +00:00
int fx_ctzl(long v)
{
return __builtin_ctzl(v);
}
2026-03-16 10:35:43 +00:00
int fx_clzl(long v)
{
return __builtin_clzl(v);
}