1 #include "exit.h"
2 
main()3 main()
4 {
5   short x[4];
6 
7   x[0] = x[1] = 0;
8   if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
9   _exit(0);
10 }
11