mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
Fix gcc warning
This commit is contained in:
parent
8834dde0c2
commit
1226eb7a5e
1 changed files with 2 additions and 2 deletions
|
@ -21,14 +21,14 @@
|
|||
/**
|
||||
* Finds lowest set bit in word.
|
||||
*/
|
||||
int ffs(int x) {
|
||||
int(ffs)(int x) {
|
||||
return __builtin_ffs(x);
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds lowest set bit in word.
|
||||
*/
|
||||
int ffsl(long x) {
|
||||
int(ffsl)(long x) {
|
||||
return __builtin_ffsl(x);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue