Commit d1ef51df authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Import log implementation from musl.

parent ff57031d
......@@ -121,14 +121,6 @@ static float CDECL unix_lgammaf(float x)
}
/*********************************************************************
* log
*/
static double CDECL unix_log( double x )
{
return log( x );
}
/*********************************************************************
* logf
*/
static float CDECL unix_logf( float x )
......@@ -251,7 +243,6 @@ static const struct unix_funcs funcs =
unix_fmaf,
unix_lgamma,
unix_lgammaf,
unix_log,
unix_logf,
unix_log10,
unix_log10f,
......
......@@ -30,7 +30,6 @@ struct unix_funcs
float (CDECL *fmaf)(float x, float y, float z);
double (CDECL *lgamma)(double x);
float (CDECL *lgammaf)(float x);
double (CDECL *log)(double x);
float (CDECL *logf)(float x);
double (CDECL *log10)(double x);
float (CDECL *log10f)(float x);
......
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