]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - include/util.h
Compat: Shuffle semi-duplicate min/max alternatives all into libcompat
[thirdparty/squid.git] / include / util.h
index b93947fb38212900478b56e07164f997d6a206e4..093225d7837e276290d93ae26df755f3c85dc99c 100644 (file)
@@ -146,13 +146,6 @@ SQUIDCEXTERN const char *xint64toa(int64_t num);
 SQUIDCEXTERN double drand48(void);
 #endif
 
-#ifndef xmax
-#define xmax(a,b) ((a) < (b) ? (b) : (a))
-#endif
-#ifndef xmin
-#define xmin(a,b) ((a) < (b) ? (a) : (b))
-#endif
-
 typedef struct {
     size_t count;
     size_t bytes;