ReactOS
0.4.16-dev-736-g28b802b
sincos.c
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS CRT library
3
* LICENSE: MIT (https://spdx.org/licenses/MIT)
4
* PURPOSE: Fallback implementation of sincos
5
* COPYRIGHT: Copyright 2022 Timo Kreuzer <timo.kreuzer@reactos.org>
6
*/
7
8
#include <math.h>
9
10
// This is a very simplistic implementation to make GCC 11 happy
11
void
sincos
(
double
x
,
double
*
s
,
double
*
c
)
12
{
13
*
s
=
sin
(
x
);
14
*
c
=
cos
(
x
);
15
}
cos
_STLP_DECLSPEC complex< float > _STLP_CALL cos(const complex< float > &)
Definition:
complex_trig.cpp:92
sin
_STLP_DECLSPEC complex< float > _STLP_CALL sin(const complex< float > &)
Definition:
complex_trig.cpp:73
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
s
GLdouble s
Definition:
gl.h:2039
c
const GLubyte * c
Definition:
glext.h:8905
sincos
void sincos(double x, double *s, double *c)
Definition:
sincos.c:11
sdk
lib
crt
math
sincos.c
Generated on Mon Feb 10 2025 06:14:01 for ReactOS by
1.9.6