The commit
05c24138c0ad8f15a557274f21956fed206fec23 accidentally set the public function to private.
There are private functions that were set to private here but I somehow added F_attribute_visibility_internal_d to a public function.
* @see f_string_maps_increase_by()
*/
#ifndef _di_f_console_environment_process_
- extern f_status_t f_console_environment_process(const f_console_arguments_t arguments, f_string_maps_t * const environment) F_attribute_visibility_internal_d;
+ extern f_status_t f_console_environment_process(const f_console_arguments_t arguments, f_string_maps_t * const environment);
#endif // _di_f_console_environment_process_
/**