Commit 0f4ed920 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Added missing FP_PNORM case.

parent cb934a11
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment