Added missing FP_PNORM case.

This commit is contained in:
Francois Gouget 2002-04-01 21:03:53 +00:00 committed by Alexandre Julliard
parent cb934a116a
commit 0f4ed92098
1 changed files with 1 additions and 0 deletions

View File

@ -330,6 +330,7 @@ int _fpclass(double num)
case FP_NZERO: return _FPCLASS_NZ;
case FP_PZERO: return _FPCLASS_PZ;
case FP_NNORM: return _FPCLASS_NN;
case FP_PNORM: return _FPCLASS_PN;
}
return _FPCLASS_PN;
#elif defined (fpclassify)