I have a C code written. When I compile it on Linux then in the header file it says the following error: storage class specified for parameter i32 , i8 and so
storage class specified for parameter i32 , i8
To add up on ;: another case can be a missing ) in a function pointer declaration:
;
)
extern void init_callbacks(void (*init)(), void (*end());
(missing closing parenthesis after *end).
*end