mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
software/include: add stdbool.h
This commit is contained in:
parent
080dbaa206
commit
83f562a76c
1 changed files with 8 additions and 0 deletions
8
software/include/base/stdbool.h
Normal file
8
software/include/base/stdbool.h
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#ifndef __STDBOOL_H
|
||||||
|
#define __STDBOOL_H
|
||||||
|
|
||||||
|
#define bool _Bool
|
||||||
|
#define true 1
|
||||||
|
#define false 0
|
||||||
|
|
||||||
|
#endif /* __STDBOOL_H */
|
Loading…
Reference in a new issue