summaryrefslogtreecommitdiff
path: root/src/unistd/getgid.c
blob: 03c5f62b1748ecf03103367fbce4ae8edc6d4fc5 (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)
{
	SCNOFAIL();
}
/*
POSIX(1)
*/