2010-07-22 01:46:14 -05:00
|
|
|
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#error use basetypes.h
|
|
|
|
|
#ifndef MINMAX_H
|
|
|
|
|
#define MINMAX_H
|
|
|
|
|
|
2020-05-20 22:00:07 -07:00
|
|
|
|
#ifndef V_min
|
|
|
|
|
#define V_min(a,b) (((a) < (b)) ? (a) : (b))
|
2010-07-22 01:46:14 -05:00
|
|
|
|
#endif
|
2020-05-20 22:00:07 -07:00
|
|
|
|
#ifndef V_max
|
|
|
|
|
#define V_max(a,b) (((a) > (b)) ? (a) : (b))
|
2010-07-22 01:46:14 -05:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // MINMAX_H
|