From 9e8751cf426b562ff0357ba265aaa0aeab8904c5 Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Tue, 21 May 2019 14:08:02 +0300 Subject: tests: fix faulty include guards. Signed-off-by: Gediminas Jakutis --- test/float_test_private.h | 6 +++--- test/time_test_private.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/float_test_private.h b/test/float_test_private.h index 91b6114..24b7181 100644 --- a/test/float_test_private.h +++ b/test/float_test_private.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#ifndef LIBRIN_FLOAT_TEST_INCLUDED -#define LIBRIN_FLOAT_TEST_INCLUDED +#ifndef LIBRIN_FLOAT_TEST_PRIVATE_INCLUDED +#define LIBRIN_FLOAT_TEST_PRIVATE_INCLUDED #include #include @@ -34,4 +34,4 @@ static int rin_double_to_hexstring_test(void); static int rin_compare_float_test(void); static int rin_compare_double_test(void); -#endif /* LIBRIN_FLOAT_TEST_INCLUDED */ +#endif /* LIBRIN_FLOAT_TEST_PRIVATE_INCLUDED */ diff --git a/test/time_test_private.h b/test/time_test_private.h index 8ccd192..9afbda2 100644 --- a/test/time_test_private.h +++ b/test/time_test_private.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#ifndef LIBRIN_TIME_TEST_INCLUDED -#define LIBRIN_TIME_TEST_INCLUDED +#ifndef LIBRIN_TIME_TEST_PRIVATE_INCLUDED +#define LIBRIN_TIME_TEST_PRIVATE_INCLUDED #include "rin/time.h" @@ -33,4 +33,4 @@ static int rin_time_cmpmoreequal_test(void); static int rin_time_cmpequal_test(void); static int rin_time_cmpnonequal_test(void); -#endif /* LIBRIN_TIME_TEST_INCLUDED */ +#endif /* LIBRIN_TIME_TEST_PRIVATE_INCLUDED */ -- cgit v1.2.3