From b129aa31d812ff5790a16fd771acc5f305752408 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 19 Jun 2024 14:55:22 -0500 Subject: [PATCH] Update: Add missing 'extern' for prototype of controller_unlock_print_flush(). --- level_3/controller/c/lock/private-lock_print.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/controller/c/lock/private-lock_print.h b/level_3/controller/c/lock/private-lock_print.h index 62f135c..6e9740c 100644 --- a/level_3/controller/c/lock/private-lock_print.h +++ b/level_3/controller/c/lock/private-lock_print.h @@ -70,7 +70,7 @@ extern "C" { * @see f_thread_mutex_unlock() */ #ifndef _di_controller_unlock_print_flush_ - void controller_unlock_print_flush(const f_file_t to, controller_thread_t * const thread) F_attribute_visibility_internal_d; + extern void controller_unlock_print_flush(const f_file_t to, controller_thread_t * const thread) F_attribute_visibility_internal_d; #endif // _di_controller_unlock_print_flush_ #ifdef __cplusplus -- 1.8.3.1