1 /* 2 * SPDX-License-Identifier: BSD-3-Clause 3 * SPDX-FileCopyrightText: Copyright TF-RMM Contributors. 4 */ 5 6 #ifndef STDBOOL_H 7 #define STDBOOL_H 8 9 #define bool _Bool 10 11 #define true (bool)(0 < 1) 12 #define false (bool)(0 > 1) 13 14 /* Signal that all the definitions are present. */ 15 #define __bool_true_false_are_defined 1 16 17 #endif /* STDBOOL_H */ 18