blob: 5b939677e9ae73137433ef76574bd185557530ca [file] [log] [blame]
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main() {
if (setuid(1) == -1) {
perror("setuid");
return 1;
}
return 0;
}