mpa.c: Do not include sys/param.h.

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
This commit is contained in:
Richard Guenther 2006-02-08 10:05:30 +00:00 committed by Richard Biener
parent d55f9d230f
commit fd97e46511
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -47,7 +47,7 @@
#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 */

View File

@ -66,6 +66,7 @@ typedef union { int i[2]; double d; } number;
#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);