| 408 | } |
| 409 | |
| 410 | int __syscall_fstat64(int fd, struct stat* buf) { |
| 411 | return __syscall_newfstatat(fd, "", buf, AT_EMPTY_PATH); |
| 412 | } |
| 413 | |
| 414 | // When calling doOpen(), we may request an FD be returned, or we may not need |
| 415 | // that return value (in which case no FD need be allocated, and we return 0 on |
nothing calls this directly
no test coverage detected