Commit 8321ce14 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Import cosf implementation from musl.

parent 73c0d36a
...@@ -122,14 +122,6 @@ static float CDECL unix_atanhf(float x) ...@@ -122,14 +122,6 @@ static float CDECL unix_atanhf(float x)
} }
/********************************************************************* /*********************************************************************
* cosf
*/
static float CDECL unix_cosf( float x )
{
return cosf( x );
}
/*********************************************************************
* cosh * cosh
*/ */
static double CDECL unix_cosh( double x ) static double CDECL unix_cosh( double x )
...@@ -477,7 +469,6 @@ static const struct unix_funcs funcs = ...@@ -477,7 +469,6 @@ static const struct unix_funcs funcs =
unix_asinhf, unix_asinhf,
unix_atanh, unix_atanh,
unix_atanhf, unix_atanhf,
unix_cosf,
unix_cosh, unix_cosh,
unix_coshf, unix_coshf,
unix_exp, unix_exp,
......
...@@ -29,7 +29,6 @@ struct unix_funcs ...@@ -29,7 +29,6 @@ struct unix_funcs
float (CDECL *asinhf)(float x); float (CDECL *asinhf)(float x);
double (CDECL *atanh)(double x); double (CDECL *atanh)(double x);
float (CDECL *atanhf)(float x); float (CDECL *atanhf)(float x);
float (CDECL *cosf)(float x);
double (CDECL *cosh)(double x); double (CDECL *cosh)(double x);
float (CDECL *coshf)(float x); float (CDECL *coshf)(float x);
double (CDECL *exp)(double x); double (CDECL *exp)(double 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