From c4b5e0a48835b6bdbf4d3d92fd42b29a22662ed4 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Tue, 16 Jan 2018 01:21:27 +0100 Subject: Mandelbrot drawing possible --- src/defs.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/defs.h') 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; -- cgit v1.2.1