Commit 0806b06f authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Fix modff signature.

parent 4c763a41
......@@ -331,7 +331,7 @@ float CDECL MSVCRT__scalbf(float num, MSVCRT_long power)
/*********************************************************************
* modff (MSVCRT.@)
*/
double CDECL MSVCRT_modff( float x, float *iptr )
float CDECL MSVCRT_modff( float x, float *iptr )
{
return modff( x, iptr );
}
......
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