From 83f562a76c366cbffe67ca297123553888dcad6e Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 12 Jan 2013 10:51:07 +0100 Subject: [PATCH] software/include: add stdbool.h --- software/include/base/stdbool.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 software/include/base/stdbool.h diff --git a/software/include/base/stdbool.h b/software/include/base/stdbool.h new file mode 100644 index 00000000..d58bb58f --- /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 */ -- 2.30.2