[liba] stdbool.h defines true and false

Change-Id: I83ad538bdfc482af1c760a4c4609633ede42053f
This commit is contained in:
Romain Goyet
2017-07-30 15:14:24 +02:00
committed by Romain Goyet
parent d92eb6866d
commit 42deac0770

View File

@@ -2,7 +2,12 @@
#define LIBA_STDBOOL_H
#ifndef __cplusplus
typedef char bool;
#define true 1
#define false 0
#endif
#endif