| 27 | #endif |
| 28 | |
| 29 | int main() |
| 30 | { |
| 31 | struct statx st; |
| 32 | int res = syscall(__NR_statx, AT_FDCWD, ".", AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT, STATX_BTIME, &st); |
| 33 | st.stx_btime.tv_sec = 1; |
| 34 | st.stx_btime.tv_nsec = 10; |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected