From cedfd6069b7006912ff1c8e90f7445e7703cd675 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 15 Jun 2005 13:30:06 +0000 Subject: [PATCH] config.h include added undef min,max added, defined in some stdlib.h :-) --- ir/be/bechordal_draw.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ir/be/bechordal_draw.c b/ir/be/bechordal_draw.c index 10a734f83..3ded8becd 100644 --- a/ir/be/bechordal_draw.c +++ b/ir/be/bechordal_draw.c @@ -9,6 +9,9 @@ * Copyright (C) 2005 Universitaet Karlsruhe * Released under the GPL */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include @@ -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; -- 2.20.1