9 lines
337 B
C
9 lines
337 B
C
//================= Copyright kotofyt, All rights reserved ==================//
|
|
// Purpose: Enables min and max. Used for C++ interoperability
|
|
//===========================================================================//
|
|
|
|
#include "minmax_off.h"
|
|
|
|
#define max(x, y) (((x) > (y)) ? (x) : (y))
|
|
#define min(x, y) (((x) < (y)) ? (x) : (y))
|