From dde089ce00bb9bc3d019b5592ba171bedf9dc73d Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 2 Jun 2024 20:24:59 -0500 Subject: [PATCH] Bugfix: Add missing 'extern' to controller_entry_settings_read_map(). --- level_3/controller/c/entry/private-entry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/controller/c/entry/private-entry.h b/level_3/controller/c/entry/private-entry.h index 787cbf5..330bfab 100644 --- a/level_3/controller/c/entry/private-entry.h +++ b/level_3/controller/c/entry/private-entry.h @@ -231,7 +231,7 @@ extern "C" { * @see f_string_maps_increase() */ #ifndef _di_controller_entry_settings_read_map_ - f_status_t controller_entry_settings_read_map(const f_string_static_t buffer, const f_string_ranges_t ranges, f_string_maps_t *setting_maps) F_attribute_visibility_internal_d; + extern f_status_t controller_entry_settings_read_map(const f_string_static_t buffer, const f_string_ranges_t ranges, f_string_maps_t *setting_maps) F_attribute_visibility_internal_d; #endif // _di_controller_entry_settings_read_map_ /** -- 1.8.3.1