11 lines
154 B
C
11 lines
154 B
C
#include <unistd.h>
|
|
#include <syscall.h>
|
|
#include <syscall_nums.h>
|
|
|
|
DEFN_SYSCALL0(getgid, SYS_GETGID);
|
|
|
|
gid_t getgid(void) {
|
|
return syscall_getgid();
|
|
}
|
|
|