Skip to content
Snippets Groups Projects
Commit d068470e authored by Tanguy Pruvot's avatar Tanguy Pruvot Committed by Scott Lahteine
Browse files

Prevent Linux min/max error (#15107)

parent ba91bca1
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment