v/vlib/builtin/wasm/wasi/wasi.v

16 lines
317 B
V

module builtin
struct CIOVec {
buf &u8
len usize
}
type Errno = u16
type FileDesc = int
@[wasm_import_namespace: 'wasi_snapshot_preview1']
fn WASM.fd_write(fd FileDesc, iovs &CIOVec, iovs_len usize, retptr &usize) Errno
@[wasm_import_namespace: 'wasi_snapshot_preview1']
@[noreturn]
fn WASM.proc_exit(rval int)