summaryrefslogtreecommitdiff
path: root/src/include/stdbool.h
blob: bfb997a1fadbfae1fb50785f19869c923e42bb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __STDBOOL_H__
#define __STDBOOL_H__

#if __STDC_VERSION__ <= 201710L
typedef _Bool   bool;
#define true	1
#define false	0
#endif

#endif /* __STDBOOL_H__ */