conformance fixes
[libc-test] / src / api / stdbool.c
1 #include <stdbool.h>
2 #define T(t) (t*)0;
3 #define C(n) switch(n){case n:;}
4 static void f()
5 {
6 T(bool)
7 C(true)
8 C(false)
9 C(__bool_true_false_are_defined)
10 }