mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
752826a667
Refine wasm loader and aot loader Fix potential issue of os_mmap/os_munmap Update document
17 lines
150 B
C
17 lines
150 B
C
__attribute__((import_module("mA")))
|
|
__attribute__((import_name("A"))) extern int
|
|
A();
|
|
|
|
int
|
|
B()
|
|
{
|
|
return 11;
|
|
}
|
|
|
|
int
|
|
call_A()
|
|
{
|
|
return A();
|
|
}
|
|
|