11 lines
119 B
C
11 lines
119 B
C
|
|
#ifndef _STDBOOL_H_
|
|
#define _STDBOOL_H_
|
|
|
|
#define false 0
|
|
#define true 1
|
|
#define bool _Bool
|
|
|
|
#endif /* _STDBOOL_H_ */
|
|
|