rnd-20140225-3-src
[rocksndiamonds.git] / src / libgame / types.h
index 86514b000d87f04edf5adbd7e73eb2fa8b1488fa..6e55364cb9ddd40945865a5eda9cbd262324c8ac 100644 (file)
@@ -66,10 +66,6 @@ typedef unsigned char byte;
 #define EVEN(a)                (((a) & 1) == 0)
 #endif
 
-#ifndef CEIL
-#define CEIL(a, b)     (((a) + (b) - 1) / (b))
-#endif
-
 #define SIZEOF_ARRAY(array, type)      (sizeof(array) / sizeof(type))
 #define SIZEOF_ARRAY_INT(array)                SIZEOF_ARRAY(array, int)