forked from Mirrors/sngrep
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:
parent
b32c2b406d
commit
5977b92d65
|
@ -26,9 +26,12 @@
|
||||||
* @brief Source of functions defined in ui_manager.h
|
* @brief Source of functions defined in ui_manager.h
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <strings.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
|
Loading…
Reference in New Issue