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/mA.c

13 lines
141 B
C
Raw Normal View History

__attribute__((export_name("A1"))) int
A1()
{
return 11;
}
int
A2()
{
return 12;
}
/* mA is a reactor. it doesn't need a main() */