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

#ifndef __STDBOOL_H__
#define __STDBOOL_H__

#include <stdint.h>


typedef _Bool   bool;
#define true    1
#define false   0

#endif /* __STDBOOL_H__ */