config.h include added
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 15 Jun 2005 13:30:06 +0000 (13:30 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 15 Jun 2005 13:30:06 +0000 (13:30 +0000)
undef min,max added, defined in some stdlib.h :-)

ir/be/bechordal_draw.c

index 10a734f..3ded8be 100644 (file)
@@ -9,6 +9,9 @@
  * Copyright (C) 2005 Universitaet Karlsruhe
  * Released under the GPL
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
 #include <limits.h>
 
@@ -174,11 +177,13 @@ struct block_dims {
   rect_t subtree_box;
 };
 
+#undef min
 static INLINE int min(int a, int b)
 {
   return a < b ? a : b;
 }
 
+#undef max
 static INLINE int max(int a, int b)
 {
   return a > b ? a : b;