blob: 9f8bc863aa2dfe4b88af598c44e83ccbc7290b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <stdbool.h>
/** boolean type **/
#define bool _Bool
/***
provides an alternative spelling for the type TYPE(_Bool).
***/
/*
VALUE_FIXED(TYPE(_Bool))
STDC(199901)
*/
|