| 1225 | } |
| 1226 | |
| 1227 | int __syscall_fchown32(int fd, uid_t owner, gid_t group) { |
| 1228 | return __syscall_fchownat(fd, "", owner, group, AT_EMPTY_PATH); |
| 1229 | } |
| 1230 | |
| 1231 | // TODO: Test this with non-AT_FDCWD values. |
| 1232 | int __syscall_faccessat(int dirfd, const char* path, int amode, int flags) { |
nothing calls this directly
no test coverage detected