brintos

brintos / linux-shallow public Read only

0
0
Text · 330 B · 60feece Raw
17 lines · c
1/* SPDX-License-Identifier: LGPL-2.1 OR MIT */2/*3 * Boolean types support for NOLIBC4 * Copyright (C) 2024 Thomas Weißschuh <linux@weissschuh.net>5 */6 7#ifndef _NOLIBC_STDBOOL_H8#define _NOLIBC_STDBOOL_H9 10#define bool _Bool11#define true 112#define false 013 14#define __bool_true_false_are_defined 115 16#endif /* _NOLIBC_STDBOOL_H */17