mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
8 lines
117 B
C
8 lines
117 B
C
#ifndef __STDBOOL_H
|
|
#define __STDBOOL_H
|
|
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif /* __STDBOOL_H */
|