ucspi-ssl 0.13.03
ucspi-ssl
Loading...
Searching...
No Matches
chkshsgr.c
Go to the documentation of this file.
1/* Public domain. */
2
3#include <sys/types.h>
4#include <unistd.h>
5#include "exit.h"
6
7int main()
8{
9 short x[4];
10
11 x[0] = x[1] = 0;
12 if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
13 _exit(0);
14}
int main()
Definition: chkshsgr.c:7
void _exit()