This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/samples/multi-module/wasm-apps/mB.c
Wenyong Huang 3ded9ece83
Apply clang format for samples files (#833)
Apply clang format for c source files under samples folder
2021-11-15 12:48:35 +08:00

16 lines
149 B
C

__attribute__((import_module("mA")))
__attribute__((import_name("A"))) extern int
A();
int
B()
{
return 11;
}
int
call_A()
{
return A();
}