mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 16:05:07 +00:00
16 lines
149 B
C
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();
|
|
}
|