2024-04-06 04:35:56 -06:00
|
|
|
#define LIBC_STDBOOL_H
|
2023-10-23 15:02:01 -05:00
|
|
|
#ifndef LIBC_STDBOOL_H
|
|
|
|
|
#define LIBC_STDBOOL_H
|
|
|
|
|
|
2024-04-05 15:11:36 -05:00
|
|
|
#include "PR/ultratypes.h"
|
|
|
|
|
|
2023-10-23 15:02:01 -05:00
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
|
|
2024-04-05 15:11:36 -05:00
|
|
|
typedef int bool;
|
2023-10-23 15:02:01 -05:00
|
|
|
#define false 0
|
|
|
|
|
#define true 1
|
|
|
|
|
|
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
#endif /* STDBOOL */
|