Sandrine Bailleux | 3cd87d7 | 2018-10-09 11:12:55 +0200 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef STDBOOL_H | ||||
8 | #define STDBOOL_H | ||||
9 | |||||
10 | #define bool _Bool | ||||
11 | |||||
12 | #define true 1 | ||||
13 | #define false 0 | ||||
14 | |||||
15 | #define __bool_true_false_are_defined 1 | ||||
16 | |||||
17 | #endif /* STDBOOL_H */ |