summaryrefslogtreecommitdiff
path: root/src/htsserver.h
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-08-15 12:37:46 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-08-15 12:37:46 +0000
commit8fd32cb662052885b9934205129703909670590d (patch)
tree840f3034ca2f844091252d16c8cb47568df4f0cd /src/htsserver.h
parent86035dd001230d41c46c07b07d746392f51f623e (diff)
Fixed min/max already declared
Diffstat (limited to 'src/htsserver.h')
-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))