From 9d7d7a8c5d5b9325e2b7322a102ebc4fb7f36b2d Mon Sep 17 00:00:00 2001 From: das Date: Sun, 18 Jan 2004 08:05:21 +0000 Subject: [PATCH] Add a delta accidentally omitted from the previous commit: Define DBL_MANH_SIZE and DBL_MANL_SIZE to be the sizes of the high and low words of the mantissa in bits, respectively. --- lib/libc/include/fpmath.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/libc/include/fpmath.h b/lib/libc/include/fpmath.h index fcfbbcfef4fb..6d36251461a1 100644 --- a/lib/libc/include/fpmath.h +++ b/lib/libc/include/fpmath.h @@ -45,6 +45,9 @@ union IEEEf2bits { } bits; }; +#define DBL_MANH_SIZE 20 +#define DBL_MANL_SIZE 32 + union IEEEd2bits { double d; struct {