litex/misoc/software/include/base/stdbool.h
Sebastien Bourdeauducq e92d00f767 move software into misoc
2015-09-28 15:30:19 +08:00

8 lines
117 B
C

#ifndef __STDBOOL_H
#define __STDBOOL_H
#define bool _Bool
#define true 1
#define false 0
#endif /* __STDBOOL_H */