stdbool-tests: match stdbool

* tests/test-stdbool.c: Omit test for
__bool_true_false_are_defined since AC_CHECK_HEADER_STDBOOL no
longer checks for this obsolescent macro.
This commit is contained in:
Paul Eggert
2022-09-08 23:49:57 -05:00
parent 35eb0be610
commit 628cc554d1
2 changed files with 5 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2022-09-08 Paul Eggert <eggert@cs.ucla.edu>
stdbool-tests: match stdbool
* tests/test-stdbool.c: Omit test for
__bool_true_false_are_defined since AC_CHECK_HEADER_STDBOOL no
longer checks for this obsolescent macro.
mktime: back in sync with GNUlib
* config/srclist.txt: glibc has synced mktime from Gnulib.
-1
View File
@@ -57,7 +57,6 @@ struct s { bool s: 1; bool t; } s;
char a[true == 1 ? 1 : -1];
char b[false == 0 ? 1 : -1];
char c[__bool_true_false_are_defined == 1 ? 1 : -1];
#if WORKING_BOOL
char d[(bool) 0.5 == true ? 1 : -1];
# ifdef ADDRESS_CHECK_OKAY /* Avoid gcc warning. */