diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/interp/wasi_api.def | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/interp/wasi_api.def b/src/interp/wasi_api.def new file mode 100644 index 00000000..008e9fd6 --- /dev/null +++ b/src/interp/wasi_api.def @@ -0,0 +1,28 @@ +WASI_FUNC(proc_exit) +WASI_FUNC(fd_read) +WASI_FUNC(fd_pread) +WASI_FUNC(fd_write) +WASI_FUNC(fd_pwrite) +WASI_FUNC(fd_close) +WASI_FUNC(fd_seek) +WASI_FUNC(fd_prestat_get) +WASI_FUNC(fd_prestat_dir_name) +WASI_FUNC(fd_fdstat_get) +WASI_FUNC(fd_fdstat_set_flags) +WASI_FUNC(fd_filestat_get) +WASI_FUNC(fd_readdir) +WASI_FUNC(environ_sizes_get) +WASI_FUNC(environ_get) +WASI_FUNC(args_sizes_get) +WASI_FUNC(args_get) +WASI_FUNC(path_open) +WASI_FUNC(path_filestat_get) +WASI_FUNC(path_symlink) +WASI_FUNC(path_unlink_file) +WASI_FUNC(path_remove_directory) +WASI_FUNC(path_create_directory) +WASI_FUNC(path_readlink) +WASI_FUNC(path_rename) +WASI_FUNC(clock_time_get) +WASI_FUNC(poll_oneoff) +WASI_FUNC(random_get) |