make include headers follow strict protoype rule (#331)

This commit is contained in:
Karl Fessel
2020-08-04 13:53:34 +02:00
committed by GitHub
parent 2db335c6d4
commit 37aae1bc49
3 changed files with 6 additions and 6 deletions

View File

@ -25,13 +25,13 @@ extern "C" {
*
* @return 0 if success
*/
int bh_platform_init();
int bh_platform_init(void);
/**
* Destroy the platform internal resources if needed,
* this function is called by wasm_runtime_destroy()
*/
void bh_platform_destroy();
void bh_platform_destroy(void);
/**
******** memory allocator APIs **********