Fei Jie | 506a42f | 2016-04-25 16:18:22 +0800 | [diff] [blame] | 1 | #include "tests.h" |
2 | #include <sys/syscall.h> | ||||
3 | |||||
4 | #ifdef __NR_rmdir | ||||
5 | |||||
6 | # include <stdio.h> | ||||
7 | # include <unistd.h> | ||||
8 | |||||
9 | int | ||||
10 | main(void) | ||||
11 | { | ||||
12 | static const char sample[] = "rmdir_sample"; | ||||
13 | long rc = syscall(__NR_rmdir, sample); | ||||
14 | printf("rmdir(\"%s\") = %ld %s (%m)\n", | ||||
15 | sample, rc, errno2name()); | ||||
16 | |||||
17 | puts("+++ exited with 0 +++"); | ||||
18 | return 0; | ||||
19 | } | ||||
20 | |||||
21 | #else | ||||
22 | |||||
23 | SKIP_MAIN_UNDEFINED("__NR_rmdir") | ||||
24 | |||||
25 | #endif |