We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6fc18e commit 933e49dCopy full SHA for 933e49d
3 files changed
core/iwasm/aot/aot_loader.c
@@ -4711,7 +4711,7 @@ aot_unload(AOTModule *module)
4711
}
4712
4713
uint32
4714
-aot_get_plt_table_size()
+aot_get_plt_table_size(void)
4715
{
4716
return get_plt_table_size();
4717
core/iwasm/compilation/aot.c
@@ -8,7 +8,7 @@
8
static char aot_error[128];
9
10
char *
11
-aot_get_last_error()
+aot_get_last_error(void)
12
13
return aot_error[0] == '\0' ? "" : aot_error;
14
core/iwasm/include/aot_export.h
@@ -98,10 +98,10 @@ void
98
aot_destroy_aot_file(uint8_t *aot_file);
99
100
101
-aot_get_last_error();
+aot_get_last_error(void);
102
103
uint32_t
104
-aot_get_plt_table_size();
+aot_get_plt_table_size(void);
105
106
#ifdef __cplusplus
107
0 commit comments