diff --git a/mach/proto/fp/FP_bias.h b/mach/proto/fp/FP_bias.h index 65045cda..fae2987e 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