#include #include "syscall.h" gid_t getegid(void) { return __syscall(SYS_getegid); } #ifdef TEST int main(void) { return 0; } #endif