blob: 3733527bd2498808e633fbd3d66c40365750dd4d [file] [log] [blame]
Julius Wernera2148372019-11-13 19:50:33 -08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#ifndef __STDBOOL_H__
4#define __STDBOOL_H__
5
Julius Wernera2148372019-11-13 19:50:33 -08006typedef _Bool bool;
Julius Wernera2148372019-11-13 19:50:33 -08007#define true 1
8#define false 0
9
10#endif /* __STDBOOL_H__ */