chkshsgr.c
author "Tomas Zeman <tomas.zeman@sun.com>"
Fri, 19 Oct 2007 14:06:22 +0200
changeset 0 068428edee47
permissions -rw-r--r--
Imported qmail-1.03

#include "exit.h"
void main()
{
 short x[4];

 x[0] = x[1] = 0;
 if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
 _exit(0);
}