Move the linkage before the type.

Though both orders work, this is customary.
This commit is contained in:
nlewycky
2019-10-29 15:30:59 -07:00
committed by GitHub
parent bc9b92c323
commit 44f026adfb

View File

@ -4,7 +4,7 @@
#include <stdint.h>
#include <string.h>
bool static host_print_called = false;
static bool host_print_called = false;
// Host function that will be imported into the Web Assembly Instance
void host_print(const wasmer_instance_context_t *ctx, int32_t ptr, int32_t len)