am 3b1e9bf3: am e18c2714: Merge "Add the missing issetugid binary compatibility stub."

* commit '3b1e9bf3e9bec519a75031dda231cdbfbac53005':
  Add the missing issetugid binary compatibility stub.
This commit is contained in:
Elliott Hughes 2014-06-07 09:57:41 +00:00 committed by Android Git Automerger
commit 47907ba49b

View File

@ -245,4 +245,9 @@ extern "C" int getdents(unsigned int fd, dirent* dirp, unsigned int count) {
return __getdents64(fd, dirp, count);
}
// This is a BSDism that we never implemented correctly. Used by Firefox.
extern "C" int issetugid() {
return 0;
}
#endif