mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
19 lines
250 B
C
19 lines
250 B
C
#ifndef STDBOOL_H
|
|
#define STDBOOL_H
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#if (__STDC_VERSION__ >= 199901L)
|
|
#define bool _Bool
|
|
#else
|
|
#define bool unsigned int
|
|
#endif
|
|
|
|
#define false 0
|
|
#define true 1
|
|
|
|
#endif
|
|
|
|
#endif
|