14 lines
213 B
C
14 lines
213 B
C
#ifndef _STDBOOL_H_
|
|
#define _STDBOOL_H_
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define false 0
|
|
#define true 1
|
|
typedef int bool;
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif // _STDBOOL_H_
|