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

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