diff options
Diffstat (limited to 'stdlib/gmp-impl.h')
-rw-r--r-- | stdlib/gmp-impl.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h index 62e96da..837fcfd 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) |