diff options
author | Elliott Hughes <enh@google.com> | 2013-10-24 16:29:40 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2013-10-24 16:29:40 -0700 |
commit | bf425680e484486803bf21e4c4cd1e3f36614a3c (patch) | |
tree | e98aae6ddd8758482b81ff2734ee21ad3db3885c /libc/Android.mk | |
parent | f8dfb6f249da6fc9c91cc8b94fa28c19e598faa6 (diff) | |
download | bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.zip bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.tar.gz bionic-bf425680e484486803bf21e4c4cd1e3f36614a3c.tar.bz2 |
Let the compiler worry about implementing ffs(3).
It does at least as good a job as our old hand-written assembly anyway.
Change-Id: If7c4a1ac508bace0b71ee7b67808caa6eabf11d2
Diffstat (limited to 'libc/Android.mk')
-rw-r--r-- | libc/Android.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/Android.mk b/libc/Android.mk index ee09087..b77e394 100644 --- a/libc/Android.mk +++ b/libc/Android.mk @@ -222,6 +222,7 @@ libc_bionic_src_files := \ bionic/__errno.cpp \ bionic/eventfd_read.cpp \ bionic/eventfd_write.cpp \ + bionic/ffs.cpp \ bionic/fork.cpp \ bionic/futimens.cpp \ bionic/getauxval.cpp \ |