Files
fx/core/sys/darwin/bitop.c
2026-03-16 10:35:43 +00:00

17 lines
193 B
C

#include <fx/core/bitop.h>
int fx_popcountl(long v)
{
return __builtin_popcountl(v);
}
int fx_ctzl(long v)
{
return __builtin_ctzl(v);
}
int fx_clzl(long v)
{
return __builtin_clzl(v);
}