Files
wamr/samples/simple/src/main.c
Weining 27f246b5f3 Enable WASI feature, enhance security and add SGX sample (#142)
Change emcc to clang
Refine interpreter to improve perforamnce
2019-11-20 21:16:36 +08:00

7 lines
105 B
C

extern void iwasm_main();
int main(int argc, char *argv[])
{
iwasm_main(argc, argv);
return 0;
}