| 182 | } |
| 183 | |
| 184 | int _wasmfs_fchmod(int fd, mode_t mode) { return __syscall_fchmod(fd, mode); } |
| 185 | |
| 186 | int _wasmfs_lchmod(const char* path, mode_t mode) { |
| 187 | return __syscall_fchmodat2(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW); |
nothing calls this directly
no test coverage detected