1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

MAX may be defined elsewhere

svn path=/trunk/avl/; revision=5086
This commit is contained in:
brendan 2003-07-07 03:37:23 +00:00
parent 533772ff76
commit 16badcd760

View File

@ -22,7 +22,7 @@
*
*/
/* $Id: avl.c,v 1.6 2003/07/07 01:40:08 brendan Exp $ */
/* $Id: avl.c,v 1.7 2003/07/07 03:37:23 brendan Exp $ */
/*
* This is a fairly straightfoward translation of a prototype
@ -976,7 +976,7 @@ avl_get_item_by_key_least (avl_tree * tree,
}
}
#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
#define AVL_MAX(X, Y) ((X) > (Y) ? (X) : (Y))
static long
avl_verify_balance (avl_node * node)
@ -994,7 +994,7 @@ avl_verify_balance (avl_node * node)
fprintf (stderr, "unbalanced at node %d\n", (int) node->key);
exit(1);
}
return (1 + MAX (lh, rh));
return (1 + AVL_MAX (lh, rh));
}
}