commit | e18c271423d1777adfe18434558944082fc32c70 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Sat Jun 07 05:37:25 2014 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sat Jun 07 05:37:26 2014 +0000 |
tree | 2df025b90853eeeef5f8dc7b623617f96ecc8914 | |
parent | 19718f0cd605f55df26823c67b62ceab6fe99a00 [diff] | |
parent | bffbfeed7a595dcbe5843a77d84c409a0225b4e1 [diff] |
Merge "Add the missing issetugid binary compatibility stub."
diff --git a/libc/bionic/ndk_cruft.cpp b/libc/bionic/ndk_cruft.cpp index b73c47e..15a3206 100644 --- a/libc/bionic/ndk_cruft.cpp +++ b/libc/bionic/ndk_cruft.cpp
@@ -245,4 +245,9 @@ return __getdents64(fd, dirp, count); } +// This is a BSDism that we never implemented correctly. Used by Firefox. +extern "C" int issetugid() { + return 0; +} + #endif