summaryrefslogtreecommitdiff
path: root/stdlib/gmp-impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/gmp-impl.h')
-rw-r--r--stdlib/gmp-impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h
index 62e96da952..837fcfdb28 100644
--- a/stdlib/gmp-impl.h
+++ b/stdlib/gmp-impl.h
@@ -66,8 +66,12 @@ MA 02111-1307, USA. */
#endif
#define ABS(x) (x >= 0 ? x : -x)
+#ifndef MIN
#define MIN(l,o) ((l) < (o) ? (l) : (o))
+#endif
+#ifndef MAX
#define MAX(h,i) ((h) > (i) ? (h) : (i))
+#endif
/* Field access macros. */
#define SIZ(x) ((x)->_mp_size)