| 259 | } |
| 260 | |
| 261 | int _wasmfs_stat(const char* path, struct stat* statBuf) { |
| 262 | return __syscall_stat64(path, statBuf); |
| 263 | } |
| 264 | |
| 265 | int _wasmfs_lstat(const char* path, struct stat* statBuf) { |
| 266 | return __syscall_lstat64(path, statBuf); |
nothing calls this directly
no test coverage detected