summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/samples/multi-module/wasm-apps/mA.c
blob: 663ec816973d4110ff81301a95f5305fd2743181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
__attribute__((export_name("A1"))) int
A1()
{
    return 11;
}

int
A2()
{
    return 12;
}

/* mA is a  reactor. it doesn't need a main() */