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

* commit 'e18c271423d1777adfe18434558944082fc32c70':
  Add the missing issetugid binary compatibility stub.
This commit is contained in:
Elliott Hughes
2014-06-07 09:18:43 +00:00
committed by Android Git Automerger

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