diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 21:28:19 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-14 21:28:19 +0200 |
commit | 1087d4df2a7342d2832ba3bab1843bf4a3040775 (patch) | |
tree | 96cd6ea198cc542f29c0660d5e5f7083af84d711 /src/chkshsgr.c |
Diffstat (limited to 'src/chkshsgr.c')
-rw-r--r-- | src/chkshsgr.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/chkshsgr.c b/src/chkshsgr.c new file mode 100644 index 0000000..12442ea --- /dev/null +++ b/src/chkshsgr.c @@ -0,0 +1,14 @@ +/* Public domain. */ + +#include <sys/types.h> +#include <unistd.h> +#include "exit.h" + +int main() +{ + short x[4]; + + x[0] = x[1] = 0; + if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1); + _exit(0); +} |