mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
74bb1ce9e9
Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Add tests for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Update documentation for no-new-privileges Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
10 lines
159 B
C
10 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;
|
|
}
|
|
|