11 lines
176 B
C
11 lines
176 B
C
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
||
|
#ifndef __STDBOOL_H__
|
||
|
#define __STDBOOL_H__
|
||
|
|
||
|
typedef _Bool bool;
|
||
|
#define true 1
|
||
|
#define false 0
|
||
|
|
||
|
#endif /* __STDBOOL_H__ */
|