Appease GCC strict prototypes warning (#3775)
This commit is contained in:
@ -6030,7 +6030,7 @@ wasm_interp_call_func_bytecode(WASMModuleInstance *module,
|
||||
|
||||
#if WASM_ENABLE_LABELS_AS_VALUES != 0
|
||||
void **
|
||||
wasm_interp_get_handle_table()
|
||||
wasm_interp_get_handle_table(void)
|
||||
{
|
||||
WASMModuleInstance module;
|
||||
memset(&module, 0, sizeof(WASMModuleInstance));
|
||||
|
||||
@ -5751,7 +5751,7 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
|
||||
|
||||
#if WASM_ENABLE_FAST_INTERP != 0 && WASM_ENABLE_LABELS_AS_VALUES != 0
|
||||
void **
|
||||
wasm_interp_get_handle_table();
|
||||
wasm_interp_get_handle_table(void);
|
||||
|
||||
static void **handle_table;
|
||||
#endif
|
||||
|
||||
@ -2532,7 +2532,7 @@ wasm_loader_prepare_bytecode(WASMModule *module, WASMFunction *func,
|
||||
|
||||
#if WASM_ENABLE_FAST_INTERP != 0 && WASM_ENABLE_LABELS_AS_VALUES != 0
|
||||
void **
|
||||
wasm_interp_get_handle_table();
|
||||
wasm_interp_get_handle_table(void);
|
||||
|
||||
static void **handle_table;
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user