Merge "Add the missing issetugid binary compatibility stub."

This commit is contained in:
Elliott Hughes 2014-06-07 05:37:25 +00:00 committed by Gerrit Code Review
commit e18c271423

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