From cd4428911d5c4d25ce2c24e6728124792124bba2 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Sequoia Date: Mon, 28 Jun 2021 04:56:30 -0700 Subject: [PATCH] Add missing FFI_HIDDEN to ffi_tramp_is_present declaration (#651) Signed-off-by: Jeremy Huddleston Sequoia --- include/ffi_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ffi_common.h b/include/ffi_common.h index 20aa756..2bd31b0 100644 --- a/include/ffi_common.h +++ b/include/ffi_common.h @@ -126,7 +126,7 @@ void *ffi_data_to_code_pointer (void *data) FFI_HIDDEN; /* The arch code calls this to determine if a given closure has a static trampoline. */ -int ffi_tramp_is_present (void *closure); +int ffi_tramp_is_present (void *closure) FFI_HIDDEN; /* Extended cif, used in callback from assembly routine */ typedef struct -- 2.34.1