]> granicus.if.org Git - strace/blob - tests/getuid.c
tests: use fixed timestamps in utime related tests
[strace] / tests / getuid.c
1 #include "tests.h"
2 #include <asm/unistd.h>
3
4 #ifdef __NR_getuid
5
6 # include <stdio.h>
7 # include <unistd.h>
8
9 int
10 main(void)
11 {
12         printf("getuid() = %ld\n", syscall(__NR_getuid));
13         return 0;
14 }
15
16 #else
17
18 SKIP_MAIN_UNDEFINED("__NR_getuid")
19
20 #endif