mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2025-03-12 19:40:28 +00:00
14 lines
185 B
C
14 lines
185 B
C
|
|
#ifndef __bool_true_false_are_defined
|
|
#define __bool_true_false_are_defined 1
|
|
#ifndef __cplusplus
|
|
|
|
#define false 0
|
|
#define true 1
|
|
#define bool _Bool
|
|
typedef int _Bool;
|
|
|
|
#endif
|
|
#endif
|
|
|