Skip to content
Snippets Groups Projects
Commit ecd7f37c authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

provide a getegid stub

parent ec7922f7
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,11 @@ gid_t getgid()
return 0;
}
gid_t getegid(void)
{
return 0;
}
int mincore(void *addr, size_t length, unsigned char *vec)
{
memset(vec, 0x01, (length + getpagesize() - 1) / getpagesize());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment