mirror of
https://github.com/ZeroOSProject/ZeroOS.git
synced 2026-09-13 01:24:42 +08:00
9 lines
111 B
C
9 lines
111 B
C
#ifndef ZEROOS_STDBOOL_H_
|
|
#define ZEROOS_STDBOOL_H_
|
|
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif
|