progs: Prevent clash with min macro.

This commit is contained in:
José Fonseca 2009-02-12 13:54:20 +00:00
parent b5c901a730
commit 7ef8e4e181

View file

@ -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()
{