Magellan Linux

Contents of /trunk/mkinitrd-magellan/klibc/usr/include/grp.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 815 - (show annotations) (download)
Fri Apr 24 18:32:46 2009 UTC (15 years ago) by niro
File MIME type: text/plain
File size: 340 byte(s)
-updated to klibc-1.5.15
1 /*
2 * grp.h
3 */
4
5 #ifndef _GRP_H
6 #define _GRP_H
7
8 #include <klibc/extern.h>
9 #include <sys/types.h>
10
11 struct group {
12 char *gr_name;
13 char *gr_passwd;
14 gid_t gr_gid;
15 char **gr_mem;
16 };
17
18 __extern int setgroups(size_t, const gid_t *);
19 __extern struct group *getgrgid(gid_t);
20 __extern struct group *getgrnam(const char *);
21
22 #endif /* _GRP_H */