Commit 1e51336f9599dde8952c9d38211d5584e4870b1d

Henrik Nordstrom 2013-06-09T16:35:02

Silence warning if MAX/MIN is already defined

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/miner.h b/miner.h
index bd80883..73da6b6 100644
--- a/miner.h
+++ b/miner.h
@@ -223,8 +223,12 @@ static inline int fsync (int fd)
 #define semtimedop(SEM, SOPS, VAL, TIMEOUT) semop(SEM, SOPS, VAL)
 #endif
 
+#ifndef MIN
 #define MIN(x, y)	((x) > (y) ? (y) : (x))
+#endif
+#ifndef MAX
 #define MAX(x, y)	((x) > (y) ? (x) : (y))
+#endif
 
 /* Put avalon last to make it the last device it tries to detect to prevent it
  * trying to claim same chip but different devices. Adding a device here will