mirror of
https://github.com/PrimeDecomp/echoes.git
synced 2026-03-31 14:23:06 -07:00
14 lines
141 B
C
14 lines
141 B
C
#ifndef STDBOOL_H
|
|
#define STDBOOL_h
|
|
|
|
#define bool _Bool
|
|
#ifndef true
|
|
#define true 1
|
|
#endif
|
|
|
|
#ifndef false
|
|
#define false 0
|
|
#endif
|
|
|
|
#endif
|