diff --git a/software/include/base/stdbool.h b/software/include/base/stdbool.h new file mode 100644 index 000000000..d58bb58fd --- /dev/null +++ b/software/include/base/stdbool.h @@ -0,0 +1,8 @@ +#ifndef __STDBOOL_H +#define __STDBOOL_H + +#define bool _Bool +#define true 1 +#define false 0 + +#endif /* __STDBOOL_H */