Skip to content

Commit

Permalink
Fix gcc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Jan 19, 2024
1 parent 8834dde commit 1226eb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/intrin/ffs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 1226eb7

Please sign in to comment.