mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-15 13:10:31 +01:00
progs: Prevent clash with min macro.
This commit is contained in:
parent
b5c901a730
commit
7ef8e4e181
1 changed files with 3 additions and 0 deletions
|
|
@ -47,7 +47,10 @@ static void Idle( void )
|
|||
}
|
||||
|
||||
/*static int max( int a, int b ) { return a > b ? a : b; }*/
|
||||
|
||||
#ifndef min
|
||||
static int min( int a, int b ) { return a < b ? a : b; }
|
||||
#endif
|
||||
|
||||
static void DrawObject()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue