18 lines
204 B
C
18 lines
204 B
C
|
#include <sys/types.h>
|
||
|
#include <sys/param.h>
|
||
|
|
||
|
#ifdef NGROUPS
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int gidset[NGROUPS];
|
||
|
if (getgroups(NGROUPS, gidset) == -1) return 1;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
int main() { return 1; }
|
||
|
|
||
|
#endif
|