summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/samples/littlevgl/vgl-wasm-runtime/src/platform/linux/main.c
blob: 63e24f11d9c965c143e0b0a2f59a0c8be0d2c022 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */
extern int
iwasm_main(int argc, char *argv[]);
int
main(int argc, char *argv[])
{
    return iwasm_main(argc, argv);
}