mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
d2c181a0a9
* z_lib OK * Documentation * Added stdbool and stdint * Fixup for new names * Fixup bad merge * Feedback * Use u/s32 for intptr_t
8 lines
108 B
C
8 lines
108 B
C
#ifndef _STDBOOL_H_
|
|
#define _STDBOOL_H_
|
|
|
|
#define false 0
|
|
#define true !false
|
|
|
|
#endif /* _STDBOOL_H_ */
|