15 lines
175 B
C
15 lines
175 B
C
#ifndef _ACC_STDBOOL_H
|
|
#define _ACC_STDBOOL_H
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define bool _Bool
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#endif
|