2006-02-08 Richard Guenther <rguenther@suse.de>
* dbl-64/mpa.c: Do not include sys/param.h.
* dbl-64/mpa.h (MIN): Define.
From-SVN: r110745
+2006-02-08 Richard Guenther <rguenther@suse.de>
+
+ * dbl-64/mpa.c: Do not include sys/param.h.
+ * dbl-64/mpa.h (MIN): Define.
+
2006-02-07 Richard Guenther <rguenther@suse.de>
PR bootstrap/26050
#include "endian.h"
#include "mpa.h"
#include "mpa2.h"
-#include <sys/param.h> /* For MIN() */
+
/* mcr() compares the sizes of the mantissas of two multiple precision */
/* numbers. Mantissas are compared regardless of the signs of the */
/* numbers, even if x->d[0] or y->d[0] are zero. Exponents are also */
#define EZ z->e
#define ABS(x) ((x) < 0 ? -(x) : (x))
+#define MIN(a,b) (((a)<(b))?(a):(b))
int __acr(const mp_no *, const mp_no *, int);
int __cr(const mp_no *, const mp_no *, int);