mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-05 17:13:36 +08:00
10 lines
241 B
C
10 lines
241 B
C
|
//========= 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
|