1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 #ifndef __MAIN_ENTRY_H__ 5 #define __MAIN_ENTRY_H__ 6 7 #ifdef __cplusplus 8 extern "C" { 9 #endif 10 11 #ifdef NOSTD 12 #define MAIN_ENTRY(...) _start(__VA_ARGS__) 13 #else 14 #define MAIN_ENTRY(...) main(__VA_ARGS__) 15 #endif 16 17 #ifdef __cplusplus 18 } 19 #endif 20 21 #endif 22