From: Kevin Day Date: Mon, 3 Jun 2024 01:24:59 +0000 (-0500) Subject: Bugfix: Add missing 'extern' to controller_entry_settings_read_map(). X-Git-Tag: 0.6.11~55 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=dde089ce00bb9bc3d019b5592ba171bedf9dc73d;p=fll Bugfix: Add missing 'extern' to controller_entry_settings_read_map(). --- 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_ /**