diff options
Diffstat (limited to 'src/shared/stdbool.h')
-rw-r--r-- | src/shared/stdbool.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/shared/stdbool.h b/src/shared/stdbool.h new file mode 100644 index 0000000..733ec28 --- /dev/null +++ b/src/shared/stdbool.h @@ -0,0 +1,13 @@ +#ifndef MELVIX_STDBOOL_H +#define MELVIX_STDBOOL_H + +typedef int bool; + +#define true 1 +#define false 0 + +// For the strange people in the world +#define TRUE 1 +#define FALSE 0 + +#endif
\ No newline at end of file |