Fei Jie | 363b71d | 2016-04-26 16:03:08 +0800 | [diff] [blame] | 1 | #include "tests.h" |
Dmitry V. Levin | 6a2f43c | 2016-08-09 14:38:29 +0000 | [diff] [blame] | 2 | #include <asm/unistd.h> |
Fei Jie | 363b71d | 2016-04-26 16:03:08 +0800 | [diff] [blame] | 3 | |
| 4 | #ifdef __NR_unlink |
| 5 | |
| 6 | # include <stdio.h> |
| 7 | # include <unistd.h> |
| 8 | |
| 9 | int |
| 10 | main(void) |
| 11 | { |
| 12 | static const char sample[] = "unlink_sample"; |
| 13 | |
| 14 | long rc = syscall(__NR_unlink, sample); |
| 15 | printf("unlink(\"%s\") = %ld %s (%m)\n", |
| 16 | sample, rc, errno2name()); |
| 17 | |
| 18 | puts("+++ exited with 0 +++"); |
| 19 | return 0; |
| 20 | } |
| 21 | |
| 22 | #else |
| 23 | |
| 24 | SKIP_MAIN_UNDEFINED("__NR_unlink") |
| 25 | |
| 26 | #endif |