8 lines
116 B
C
8 lines
116 B
C
#ifndef TEMPORALZ_STDBOOL_H
|
|
#define TEMPORALZ_STDBOOL_H
|
|
|
|
typedef _Bool bool;
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif
|