mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-24 05:55:01 +03:00
5d35055807
* add recipe for context * echo * $(PYTHON) * func_EBFBE0_801881FC * func_EBFBE0_801881FC * format * format * func_EBFBE0_8018994C * func_EBFBE0_8018A644 * func_EBFBE0_8018A990 * no casting for you * func_EBFBE0_8018ABC0 * func_EBFBE0_8018ACEC * func_EBFBE0_8018B038 * func_EBFBE0_8018B058 * func_EBFBE0_8018B5C4 * func_EBFBE0_8018C114 * unify phony
15 lines
213 B
C
15 lines
213 B
C
#ifndef LIBC_STDBOOL_H
|
|
#define LIBC_STDBOOL_H
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define bool s32
|
|
#define false 0
|
|
#define true 1
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* STDBOOL */
|