Commit 96fcbfdd authored by Piotr Caban's avatar Piotr Caban Committed by Michael Stefaniuc

msvcrt: Fix modff signature.

Signed-off-by: 's avatarPiotr Caban <piotr@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org> (cherry picked from commit 0806b06f) Signed-off-by: 's avatarMichael Stefaniuc <mstefani@winehq.org>
parent 916570d4
......@@ -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