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