8a266a478e
Increase gid_t and uid_t to 32 bits and provide backwards compatibility where needed.
17 lines
245 B
C
17 lines
245 B
C
/*
|
|
getgroups.c
|
|
*/
|
|
|
|
#include <lib.h>
|
|
#define getgroups _getgroups
|
|
#include <unistd.h>
|
|
|
|
PUBLIC int getgroups(int ngroups, gid_t *arr)
|
|
{
|
|
message m;
|
|
m.m1_i1 = ngroups;
|
|
m.m1_p1 = (char *) arr;
|
|
|
|
return(_syscall(PM_PROC_NR, GETGROUPS, &m));
|
|
}
|
|
|