diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-22 18:00:25 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-22 18:00:25 +0100 |
commit | 0737819efdd0bae112d16d874cac7e747e43cd08 (patch) | |
tree | 98a9ac84f7f347ae530c14852c68870682f3d04c /tests/test-stdint.c | |
parent | 163a663518f33bab48b28431972e580b366b4d49 (diff) | |
parent | e670957a8693f860cf7d77fed4ce6b4b056a8083 (diff) |
Merge branch 'release/debian/1.3-1'debian/1.3-1
Diffstat (limited to 'tests/test-stdint.c')
-rw-r--r-- | tests/test-stdint.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test-stdint.c b/tests/test-stdint.c index 47bedc89..b8799eaf 100644 --- a/tests/test-stdint.c +++ b/tests/test-stdint.c @@ -297,17 +297,15 @@ verify_same_types (SIZE_MAX, (size_t) 0 + 0); err or; #endif -#if HAVE_WCHAR_T verify (TYPE_MINIMUM (wchar_t) == WCHAR_MIN); verify (TYPE_MAXIMUM (wchar_t) == WCHAR_MAX); verify_same_types (WCHAR_MIN, (wchar_t) 0 + 0); verify_same_types (WCHAR_MAX, (wchar_t) 0 + 0); -# if WCHAR_MIN != 17 && WCHAR_MAX +#if WCHAR_MIN != 17 && WCHAR_MAX /* ok */ -# else +#else err or; -# endif #endif #if HAVE_WINT_T |