Prevent Linux min/max error (#15107)

This commit is contained in:
Tanguy Pruvot
2019-08-30 17:46:09 -05:00
committed by Scott Lahteine
parent ba91bca1eb
commit d068470e18
@@ -49,8 +49,6 @@ typedef uint8_t byte;
#define PGM_P const char *
// Used for libraries, preprocessor, and constants
#define min(a,b) ((a)<(b)?(a):(b))
#define max(a,b) ((a)>(b)?(a):(b))
#define abs(x) ((x)>0?(x):-(x))
#ifndef isnan