diff options
author | 2019-05-21 14:08:02 +0300 | |
---|---|---|
committer | 2019-05-21 14:08:02 +0300 | |
commit | 9e8751cf426b562ff0357ba265aaa0aeab8904c5 (patch) | |
tree | 4140a023d846eb0806fad74c26b2f870127cc88a /test/float_test_private.h | |
parent | e1f1b3db7cefe66613c4459d338236155e19d59f (diff) | |
download | librin-9e8751cf426b562ff0357ba265aaa0aeab8904c5.tar.gz librin-9e8751cf426b562ff0357ba265aaa0aeab8904c5.tar.bz2 librin-9e8751cf426b562ff0357ba265aaa0aeab8904c5.zip |
tests: fix faulty include guards.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'test/float_test_private.h')
-rw-r--r-- | test/float_test_private.h | 6 |
1 files changed, 3 insertions, 3 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 <stdlib.h> #include <string.h> @@ -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 */ |