diff --git a/src/calibre/utils/matcher.c b/src/calibre/utils/matcher.c index e96ecfe4f7..a06f468cf5 100644 --- a/src/calibre/utils/matcher.c +++ b/src/calibre/utils/matcher.c @@ -18,7 +18,6 @@ typedef unsigned char bool; #define TRUE 1 #define FALSE 0 -#define MIN(x, y) ((x < y) ? x : y) #define MAX(x, y) ((x > y) ? x : y) #define nullfree(x) if(x != NULL) free(x); x = NULL;