| 178 | } |
| 179 | |
| 180 | int _wasmfs_chmod(const char* path, mode_t mode) { |
| 181 | return __syscall_chmod(path, mode); |
| 182 | } |
| 183 | |
| 184 | int _wasmfs_fchmod(int fd, mode_t mode) { return __syscall_fchmod(fd, mode); } |
| 185 |
nothing calls this directly
no test coverage detected