aboutsummaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorLeonard Kugis <leonardkugis@gmail.com>2018-01-16 01:21:27 +0100
committerLeonard Kugis <leonardkugis@gmail.com>2018-01-16 01:21:27 +0100
commitc4b5e0a48835b6bdbf4d3d92fd42b29a22662ed4 (patch)
tree807f2c1ac0010ce91f5560d6bf852ecca45a221a /src/defs.h
parent9d46c7e44b0c8e0625894dbb688e9b2804d83c9d (diff)
Mandelbrot drawing possible
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/defs.h b/src/defs.h
index 66bffb4..1ed2282 100644
--- a/src/defs.h
+++ b/src/defs.h
@@ -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;