diff --git a/ccutil/host.h b/ccutil/host.h index e233dda7c8..3ec3bcb79b 100644 --- a/ccutil/host.h +++ b/ccutil/host.h @@ -140,10 +140,6 @@ typedef unsigned char BOOL8; #define FALSE 0 #endif -#ifndef NULL -#define NULL 0L -#endif - // Return true if x is within tolerance of y template bool NearlyEqual(T x, T y, T tolerance) { T diff = x - y;