diff options
Diffstat (limited to 'wasm2c/examples/callback/callback.wat')
-rw-r--r-- | wasm2c/examples/callback/callback.wat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wasm2c/examples/callback/callback.wat b/wasm2c/examples/callback/callback.wat index 6a8ab233..9786209a 100644 --- a/wasm2c/examples/callback/callback.wat +++ b/wasm2c/examples/callback/callback.wat @@ -1,7 +1,7 @@ ;; Module demonstrating use of a host-installed callback function. ;; The type of the callback function. The type ID can be looked up outside the module by calling -;; Z_[modname]_get_func_type(1, 0, WASM_RT_I32) (indicating 1 param, 0 results, param type is i32). +;; wasm2c_[modname]_get_func_type(1, 0, WASM_RT_I32) (indicating 1 param, 0 results, param type is i32). (type $print_type (func (param i32))) ;; An indirect function table to hold the callback function |