]> git.lizzy.rs Git - plan9front.git/blob - sys/include/ape/grp.h
dpost prologue: update /radicalex to fix square displacement (thanks umbraticus and...
[plan9front.git] / sys / include / ape / grp.h
1 #ifndef __GRP
2 #define __GRP
3 #ifndef _POSIX_SOURCE
4    This header file is not defined in pure ANSI
5 #endif
6 #pragma lib "/$M/lib/ape/libap.a"
7 #include <sys/types.h>
8
9 struct  group {
10         char    *gr_name;
11         char    *gr_passwd;
12         gid_t   gr_gid;
13         char    **gr_mem;
14 };
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 extern struct group *getgrgid(gid_t);
21 extern struct group *getgrnam(const char *);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif