msvcrt: Remove cos from unixlib.

Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Piotr Caban 2021-05-23 16:36:44 +02:00 committed by Alexandre Julliard
parent 1ed574a03e
commit 88dc2d0e68
2 changed files with 0 additions and 10 deletions

View File

@ -121,14 +121,6 @@ static float CDECL unix_atanhf(float x)
#endif
}
/*********************************************************************
* cos
*/
static double CDECL unix_cos( double x )
{
return cos( x );
}
/*********************************************************************
* cosf
*/
@ -493,7 +485,6 @@ static const struct unix_funcs funcs =
unix_asinhf,
unix_atanh,
unix_atanhf,
unix_cos,
unix_cosf,
unix_cosh,
unix_coshf,

View File

@ -29,7 +29,6 @@ struct unix_funcs
float (CDECL *asinhf)(float x);
double (CDECL *atanh)(double x);
float (CDECL *atanhf)(float x);
double (CDECL *cos)(double x);
float (CDECL *cosf)(float x);
double (CDECL *cosh)(double x);
float (CDECL *coshf)(float x);