aboutsummaryrefslogtreecommitdiff
path: root/have/setresgid.c
blob: 616458f82280192cdb500175616ed252dfe19928 (plain)
1
2
3
4
5
6
7
8
#include <sys/types.h>
#include <unistd.h>

int
main(void)
{
	return setresgid(-1, -1, -1) == -1;
}