Files
Upsilon/liba/include/stdbool.h
Romain Goyet 42deac0770 [liba] stdbool.h defines true and false
Change-Id: I83ad538bdfc482af1c760a4c4609633ede42053f
2017-08-03 11:03:01 +02:00

14 lines
135 B
C

#ifndef LIBA_STDBOOL_H
#define LIBA_STDBOOL_H
#ifndef __cplusplus
typedef char bool;
#define true 1
#define false 0
#endif
#endif