| 400 | } |
| 401 | |
| 402 | int __syscall_stat64(const char* path, struct stat* buf) { |
| 403 | return __syscall_newfstatat(AT_FDCWD, path, buf, 0); |
| 404 | } |
| 405 | |
| 406 | int __syscall_lstat64(const char* path, struct stat* buf) { |
| 407 | return __syscall_newfstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); |
no test coverage detected