mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
159 B
C
11 lines
159 B
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
printf("EUID=%d\n", geteuid());
|
||
|
return 0;
|
||
|
}
|
||
|
|