source: trunk/minix/lib/posix/_getgroups.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 347 bytes
Line 
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
13PUBLIC int getgroups(gidsetsize, grouplist)
14int gidsetsize;
15gid_t grouplist[];
16{
17 return(0);
18}
Note: See TracBrowser for help on using the repository browser.