shithub: riscv

ref: 1fd5f5205dd80e00b9a069567e46dd3a261ecd24
dir: /sys/include/ape/stdbool.h/

View raw version
#ifndef __STDBOOL_H__
#define __STDBOOL_H__

/* Strictly speaking, this should be a built-in type. */
typedef char _Bool;

#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1

#endif