mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12 lines
148 B
C
12 lines
148 B
C
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
if (setuid(1) == -1) {
|
||
|
perror("setuid");
|
||
|
return 1;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|