fix HUGE and MAXVAL (suggested by Tim Peters)

This commit is contained in:
Guido van Rossum 1992-03-27 17:30:32 +00:00
parent df840d911f
commit dcc6ef2144
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ static char MDMINFRAC[] = "494065645841246544";
static double ZERO = 0.0;
static int MDMAXEXPT = { 309};
static char MDMAXFRAC[] = "17976931348623147";
static double HUGE = 1.7976931348623147e308;
static char MDMAXFRAC[] = "17976931348623157";
static double HUGE = 1.7976931348623157e308;
extern double atof(); /* Only called when result known to be ok */