ui: import strings.h and config.h

strings.h required for strncasecmp, fixes an implicit function
declaration

config.h needed for the actual configuration, it sets -D_GNU_SOURCE that
is needed for strsep.
This commit is contained in:
psykose 2023-01-09 06:58:23 +00:00 committed by Kaian
parent b32c2b406d
commit 5977b92d65
1 changed files with 3 additions and 0 deletions

View File

@ -26,9 +26,12 @@
* @brief Source of functions defined in ui_manager.h
*
*/
#include "config.h"
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <strings.h>
#include <math.h>
#include <stdlib.h>
#include <locale.h>