summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/samples/simple/src/main.c
blob: e603420ee4dd8f94477713b05f609438689bf994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

extern void
iwasm_main();

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