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

msvcrt: Import sin implementation from musl.

parent 78fc19d6
...@@ -404,14 +404,6 @@ static float CDECL unix_powf( float x, float y ) ...@@ -404,14 +404,6 @@ static float CDECL unix_powf( float x, float y )
} }
/********************************************************************* /*********************************************************************
* sin
*/
static double CDECL unix_sin( double x )
{
return sin( x );
}
/*********************************************************************
* sinf * sinf
*/ */
static float CDECL unix_sinf( float x ) static float CDECL unix_sinf( float x )
...@@ -530,7 +522,6 @@ static const struct unix_funcs funcs = ...@@ -530,7 +522,6 @@ static const struct unix_funcs funcs =
unix_log2f, unix_log2f,
unix_pow, unix_pow,
unix_powf, unix_powf,
unix_sin,
unix_sinf, unix_sinf,
unix_sinh, unix_sinh,
unix_sinhf, unix_sinhf,
......
...@@ -58,7 +58,6 @@ struct unix_funcs ...@@ -58,7 +58,6 @@ struct unix_funcs
float (CDECL *log2f)(float x); float (CDECL *log2f)(float x);
double (CDECL *pow)(double x, double y); double (CDECL *pow)(double x, double y);
float (CDECL *powf)(float x, float y); float (CDECL *powf)(float x, float y);
double (CDECL *sin)(double x);
float (CDECL *sinf)(float x); float (CDECL *sinf)(float x);
double (CDECL *sinh)(double x); double (CDECL *sinh)(double x);
float (CDECL *sinhf)(float x); float (CDECL *sinhf)(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