FreeRDP
stdbool.h
1 /*===---- stdbool.h - Standard header for booleans -------------------------===
2  *
3  * Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4  * See https://llvm.org/LICENSE.txt for license information.
5  * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6  *
7  *===-----------------------------------------------------------------------===
8  */
9 
10 #ifndef __STDBOOL_H
11 #define __STDBOOL_H
12 
13 /* Don't define bool, true, and false in C++, except as a GNU extension. */
14 #ifndef __cplusplus
15 typedef int bool;
16 #define true 1
17 #define false 0
18 #endif
19 
20 #define __bool_true_false_are_defined 1
21 
22 #endif /* __STDBOOL_H */