cargo-binstall/crates/detect-wasi/src/miniwasi.wast
Félix Saparelli 4b00f5f143
Split crates and clean up structure of codebase (#294)
Co-authored-by: Jiahao XU <Jiahao_XU@outlook.com>
2022-08-20 11:24:12 +00:00

10 lines
215 B
Text

(module
(import "wasi_snapshot_preview1" "proc_exit" (func $exit (param i32)))
(memory $0 0)
(export "memory" (memory $0))
(export "_start" (func $0))
(func $0
(call $exit (i32.const 0))
(unreachable)
)
)