mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
e70a8fbb99
* Move headers to include/libc * stddef * move math.h * General cleanup * move fabs, sqrtf and sqrt to math.h * move alloca and assert * whoops
15 lines
199 B
C
15 lines
199 B
C
#ifndef STDBOOL
|
|
#define STDBOOL
|
|
|
|
#define __bool_true_false_are_defined 1
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#define bool u32
|
|
#define false 0
|
|
#define true 1
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* STDBOOL */
|