ucspi-tcp6 1.13.02
ucspi-tcp6
Loading...
Searching...
No Matches
chkshsgr.c
Go to the documentation of this file.
1#include "exit.h"
2
3extern int getgroups(int, short[4]);
4extern int setgroups(int, short[4]);
5
6int main()
7{
8 short x[4];
9
10 x[0] = x[1] = 0;
11 if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
12 _exit(0);
13}
int getgroups(int, short[4])
int setgroups(int, short[4])
int main()
Definition: chkshsgr.c:6