From: Sebastien Bourdeauducq Date: Sat, 12 Jan 2013 09:51:07 +0000 (+0100) Subject: software/include: add stdbool.h X-Git-Tag: 24jan2021_ls180~3054 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=83f562a76c366cbffe67ca297123553888dcad6e;p=litex.git software/include: add 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 */