Seaside/SpyCustom/sdk/valve_minmax_on.h

8 lines
159 B
C
Raw Normal View History

2021-06-16 18:49:07 +03:00
#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