diff --git a/src/types/int.h b/src/types/int.h index 01bbb06..be71fc3 100644 --- a/src/types/int.h +++ b/src/types/int.h @@ -1,7 +1,7 @@ #ifndef INI_CONFIG_TYPES_INT_H #define INI_CONFIG_TYPES_INT_H -#include +#include "minIni.h" #include "../ini-config.h" INI_CONFIG_DECLARE_TYPE(U8); diff --git a/src/types/string.h b/src/types/string.h index 8a9a2c9..e3721b5 100644 --- a/src/types/string.h +++ b/src/types/string.h @@ -1,7 +1,7 @@ #ifndef INI_CONFIG_TYPES_STRING_H #define INI_CONFIG_TYPES_STRING_H -#include +#include "minIni.h" #include "../ini-config.h" INI_CONFIG_DECLARE_TYPE(String); diff --git a/tests/test-int.c b/tests/test-int.c index 4d7f4b9..6b3f427 100644 --- a/tests/test-int.c +++ b/tests/test-int.c @@ -1,8 +1,8 @@ #include #include #include -#include "../source/ini-config.h" -#include "../source/types/int.h" +#include "../src/ini-config.h" +#include "../src/types/int.h" static int8_t default_int8_value = 0;