gmod64-sdk/public/minmax.h
2021-02-16 21:58:32 +02:00

18 lines
381 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef MINMAX_H
#define MINMAX_H
#ifndef vmin
#define vmin(a,b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef vmax
#define vmax(a,b) (((a) > (b)) ? (a) : (b))
#endif
#endif // MINMAX_H