| 263 | } |
| 264 | |
| 265 | int _wasmfs_lstat(const char* path, struct stat* statBuf) { |
| 266 | return __syscall_lstat64(path, statBuf); |
| 267 | } |
| 268 | |
| 269 | // The legacy JS API requires a mountpoint to already exist, so WasmFS will |
| 270 | // attempt to remove the target directory if it exists before replacing it with |
nothing calls this directly
no test coverage detected