mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
dfb1db2d50
Signed-off-by: Jess Frazelle <acidburn@google.com>
9 lines
167 B
C
9 lines
167 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
|
|
int main(int argc, char *argv[]){
|
|
printf("Effective uid: %d\n", geteuid());
|
|
return 0;
|
|
}
|