summaryrefslogtreecommitdiff
path: root/src/user/lib/include/grp.h
blob: e7b99c9f2cfb5f87d42e8545d3d696190944a822 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include <sys/types.h>

struct group {
	char *gr_name;
	char *gr_passwd;
	gid_t gr_gid;
	char **gr_mem;
};

struct group *getgrgid(gid_t gid);