| 404 | } |
| 405 | |
| 406 | int __syscall_lstat64(const char* path, struct stat* buf) { |
| 407 | return __syscall_newfstatat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW); |
| 408 | } |
| 409 | |
| 410 | int __syscall_fstat64(int fd, struct stat* buf) { |
| 411 | return __syscall_newfstatat(fd, "", buf, AT_EMPTY_PATH); |
no test coverage detected