mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
14 lines
135 B
C
14 lines
135 B
C
#ifndef LIBA_STDBOOL_H
|
|
#define LIBA_STDBOOL_H
|
|
|
|
#ifndef __cplusplus
|
|
|
|
typedef char bool;
|
|
|
|
#define true 1
|
|
#define false 0
|
|
|
|
#endif
|
|
|
|
#endif
|