fix: the minimum exponent is 1, not 0!
authorceriel <none@none>
Wed, 10 Aug 1988 22:33:48 +0000 (22:33 +0000)
committerceriel <none@none>
Wed, 10 Aug 1988 22:33:48 +0000 (22:33 +0000)
mach/proto/fp/FP_bias.h

index 65045cd..fae2987 100644 (file)
@@ -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