diff options
Diffstat (limited to 'libc/bionic/ffs.cpp')
-rw-r--r-- | libc/bionic/ffs.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/libc/bionic/ffs.cpp b/libc/bionic/ffs.cpp index b2270e548..aa7e5043a 100644 --- a/libc/bionic/ffs.cpp +++ b/libc/bionic/ffs.cpp @@ -26,8 +26,5 @@ * SUCH DAMAGE. */ +#define __BIONIC_STRINGS_INLINE /* Out of line. */ #include <strings.h> - -int ffs(int x) { - return __builtin_ffs(x); -} |