| 1193 | } |
| 1194 | |
| 1195 | int __syscall_chmod(const char* path, mode_t mode) { |
| 1196 | return __syscall_fchmodat2(AT_FDCWD, path, mode, 0); |
| 1197 | } |
| 1198 | |
| 1199 | int __syscall_fchmod(int fd, mode_t mode) { |
| 1200 | auto openFile = wasmFS.getFileTable().locked().getEntry(fd); |
no test coverage detected