Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / tools / include / nolibc / stdbool.h
blob60feece22f17ca766b643efd56b5b12141db3ba3
1 /* SPDX-License-Identifier: LGPL-2.1 OR MIT */
2 /*
3 * Boolean types support for NOLIBC
4 * Copyright (C) 2024 Thomas Weißschuh <linux@weissschuh.net>
5 */
7 #ifndef _NOLIBC_STDBOOL_H
8 #define _NOLIBC_STDBOOL_H
10 #define bool _Bool
11 #define true 1
12 #define false 0
14 #define __bool_true_false_are_defined 1
16 #endif /* _NOLIBC_STDBOOL_H */