summaryrefslogtreecommitdiff
path: root/src/stdbool/false.c
blob: 0259936d905474951fdbca4c9ff627e8edea06fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdbool.h>

/** boolean false constant **/

#define false                                                                (0)

/***
is the false value for the type TYPE(_Bool).
***/

/*
VALUE_FIXED(0)
STDC(199901)
*/