blob: a311586b825ae0a8d0b4293ee70fd639f4aa53c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdbool.h>
/** indicate inclusion of <stdbool.h> **/
#define __bool_true_false_are_defined (1)
/***
is set to indicate that the standard header HEADER(stdbool.h) has been included,
and the definitions of MACRO(bool), MACRO(true), and MACRO(false) are available.
***/
/*
VALUE_FIXED(1)
STDC(199901)
*/
|