Last change
on this file since 18 was 18, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
370 bytes
|
Line | |
---|
1 | /* grp.h (emx+gcc) */
|
---|
2 |
|
---|
3 | #ifndef _GRP_H
|
---|
4 | #define _GRP_H
|
---|
5 |
|
---|
6 | #if defined (__cplusplus)
|
---|
7 | extern "C" {
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | #if !defined (_GID_T)
|
---|
11 | #define _GID_T
|
---|
12 | typedef int gid_t;
|
---|
13 | #endif
|
---|
14 |
|
---|
15 | struct group
|
---|
16 | {
|
---|
17 | char *gr_name;
|
---|
18 | gid_t gr_gid;
|
---|
19 | char **gr_mem;
|
---|
20 | };
|
---|
21 |
|
---|
22 | struct group *getgrgid (gid_t);
|
---|
23 | struct group *getgrnam (__const__ char *);
|
---|
24 |
|
---|
25 | #if defined (__cplusplus)
|
---|
26 | }
|
---|
27 | #endif
|
---|
28 |
|
---|
29 | #endif /* not _GRP_H */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.