source:
trunk/minix/lib/posix/_getgroups.c@
11
| Last change on this file since 11 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 347 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* getgroups.c POSIX 4.2.3 |
| 2 | * int getgroups(gidsetsize, grouplist); | |
| 3 | * | |
| 4 | * This call relates to suplementary group ids, which are not | |
| 5 | * supported in MINIX. | |
| 6 | */ | |
| 7 | ||
| 8 | #include <lib.h> | |
| 9 | #define getgroups _getgroups | |
| 10 | #include <unistd.h> | |
| 11 | #include <time.h> | |
| 12 | ||
| 13 | PUBLIC int getgroups(gidsetsize, grouplist) | |
| 14 | int gidsetsize; | |
| 15 | gid_t grouplist[]; | |
| 16 | { | |
| 17 | return(0); | |
| 18 | } |
Note:
See TracBrowser
for help on using the repository browser.