From 0d33ce7d141cae7e1f0bbb28f868b945fcd4ecac Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Thu, 18 Jan 2024 21:39:26 +0800 Subject: [PATCH] Fix includes Use alternate syntax for includes. --- src/types/int.h | 2 +- src/types/string.h | 2 +- tests/test-int.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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;