Remove duplicate macro definition

This commit is contained in:
Kovid Goyal 2015-11-16 09:42:01 +05:30
parent 85d39860a5
commit 15cbf73fc5

View File

@ -18,7 +18,6 @@
typedef unsigned char bool; typedef unsigned char bool;
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0
#define MIN(x, y) ((x < y) ? x : y)
#define MAX(x, y) ((x > y) ? x : y) #define MAX(x, y) ((x > y) ? x : y)
#define nullfree(x) if(x != NULL) free(x); x = NULL; #define nullfree(x) if(x != NULL) free(x); x = NULL;