summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/htsserver.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/htsserver.h b/src/htsserver.h
index 357f7c2..27ba90d 100644
--- a/src/htsserver.h
+++ b/src/htsserver.h
@@ -87,6 +87,8 @@ extern httrackp *global_opt;
#define is_quote(c) ( ((c)=='\"') || ((c)=='\'') )
#define is_retorsep(c) ( ((c)==10) || ((c)==13) || ((c)==9) )
+#undef min
+#undef max
#define min(a,b) ((a)>(b)?(b):(a))
#define max(a,b) ((a)>(b)?(a):(b))