aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/tier0/valve_minmax_on.h
blob: 738eabc162a08d5b3b37144dca190f8876f282b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
//========= Copyright Valve Corporation, All rights reserved. ============//
#if !defined(POSIX)
#ifndef min
	#define min(a,b)  (((a) < (b)) ? (a) : (b))
#endif
#ifndef max
	#define max(a,b)  (((a) > (b)) ? (a) : (b))
#endif
#endif