removed compiler warn
authoradam <anton@adamansky.com>
Sun, 28 Oct 2012 14:26:58 +0000 (21:26 +0700)
committeradam <anton@adamansky.com>
Sun, 28 Oct 2012 14:26:58 +0000 (21:26 +0700)
tcejdb/timsort.c

index 5240399..a5af467 100644 (file)
@@ -75,7 +75,9 @@
 #define ELEM(a,i) ((char *)(a) + (i) * WIDTH)
 #define LEN(n) ((n) * WIDTH)
 
+#ifndef MIN
 #define MIN(a,b) ((a) <= (b) ? (a) : (b))
+#endif
 #define SUCCESS 0
 #define FAILURE (-1)