blob: 1cf3449b0369d1436c71d26ed32c877adce484f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define LIBC_STDBOOL_H
#ifndef LIBC_STDBOOL_H
#define LIBC_STDBOOL_H
#include "PR/ultratypes.h"
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
typedef int bool;
#define false 0
#define true 1
#endif /* __cplusplus */
#endif /* STDBOOL */
|