gallium/aux: Avoid redefining MAX

* Can be redefined on some platforms through u_debug.h
This commit is contained in:
Alexander von Gluck IV 2014-12-09 21:05:03 +00:00
parent 3a18fc6058
commit 63d3f621e3
1 changed files with 2 additions and 0 deletions

View File

@ -35,7 +35,9 @@
#include "cso_hash.h"
#ifndef MAX
#define MAX(a, b) ((a > b) ? (a) : (b))
#endif
static const int MinNumBits = 4;