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