make include headers follow strict protoype rule (#331)
This commit is contained in:
@ -128,7 +128,7 @@ typedef struct RuntimeInitArgs {
|
||||
* @return true if success, false otherwise
|
||||
*/
|
||||
bool
|
||||
wasm_runtime_init();
|
||||
wasm_runtime_init(void);
|
||||
|
||||
/**
|
||||
* Initialize the WASM runtime environment, and also initialize
|
||||
@ -146,7 +146,7 @@ wasm_runtime_full_init(RuntimeInitArgs *init_args);
|
||||
* Destroy the WASM runtime environment.
|
||||
*/
|
||||
void
|
||||
wasm_runtime_destroy();
|
||||
wasm_runtime_destroy(void);
|
||||
|
||||
/**
|
||||
* Allocate memory from runtime memory environment.
|
||||
|
||||
Reference in New Issue
Block a user