master
 1/* <stdbool.h> for the Aro C compiler */
 2
 3#pragma once
 4
 5#if __STDC_VERSION__ < 202311L
 6#define bool _Bool
 7
 8#define true 1
 9#define false 0
10
11#define __bool_true_false_are_defined 1
12
13#endif