diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-16 01:21:27 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-16 01:21:27 +0100 |
commit | c4b5e0a48835b6bdbf4d3d92fd42b29a22662ed4 (patch) | |
tree | 807f2c1ac0010ce91f5560d6bf852ecca45a221a /src/defs.h | |
parent | 9d46c7e44b0c8e0625894dbb688e9b2804d83c9d (diff) |
Mandelbrot drawing possible
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -8,8 +8,16 @@ #ifndef DEFS_H_ #define DEFS_H_ +#ifndef NULL +#define NULL 0 +#endif + +#ifndef TRUE #define TRUE 1 +#endif +#ifndef FALSE #define FALSE 0 +#endif typedef unsigned char u8; typedef signed char s8; |