9 lines
97 B
C
9 lines
97 B
C
|
|
#ifndef STDBOOL_H_
|
||
|
|
#define STDBOOL_H_
|
||
|
|
|
||
|
|
#define bool _Bool
|
||
|
|
#define true 1
|
||
|
|
#define false 0
|
||
|
|
|
||
|
|
#endif
|