From: ceriel Date: Wed, 10 Aug 1988 22:33:48 +0000 (+0000) Subject: fix: the minimum exponent is 1, not 0! X-Git-Tag: release-5-5~2933 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=d308f4a3c201718a1f41a4566a107277015a33ab;p=ack.git fix: the minimum exponent is 1, not 0! --- diff --git a/mach/proto/fp/FP_bias.h b/mach/proto/fp/FP_bias.h index 65045cdab..fae2987ef 100644 --- a/mach/proto/fp/FP_bias.h +++ b/mach/proto/fp/FP_bias.h @@ -22,9 +22,9 @@ /* 1) FOR THE DIFFERENT FORMATS */ #define SGL_MAX 255 /* standard definition */ -#define SGL_MIN 0 /* standard definition */ +#define SGL_MIN 1 /* standard definition */ #define DBL_MAX 2047 /* standard definition */ -#define DBL_MIN 0 /* standard definition */ +#define DBL_MIN 1 /* standard definition */ #define EXT_MAX 16384 /* standard minimum */ #define EXT_MIN -16383 /* standard minimum */ #else @@ -41,9 +41,9 @@ /* 1) FOR THE DIFFERENT FORMATS */ #define SGL_MAX 255 /* standard definition */ -#define SGL_MIN 0 /* standard definition */ +#define SGL_MIN 1 /* standard definition */ #define DBL_MAX 255 /* standard definition */ -#define DBL_MIN 0 /* standard definition */ +#define DBL_MIN 1 /* standard definition */ #define EXT_MAX 16384 /* standard minimum */ #define EXT_MIN -16383 /* standard minimum */ #endif