blob: 0d4a070db0a439371801888aaba18d8ca8d7b100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/syscall.h"
gid_t getgid(void)
{
SYSCALL("getgid", gid_t, -1, 0, 0, 0, 0, 0, 0);
}
/*
POSIX(1)
*/
|