Files

18 lines
262 B
C
Raw Permalink Normal View History

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
#include "PR/ultratypes.h"
2023-10-23 15:02:01 -05:00
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
typedef int bool;
2023-10-23 15:02:01 -05:00
#define false 0
#define true 1
#endif /* __cplusplus */
#endif /* STDBOOL */