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