ReactOS 0.4.15-dev-7958-gcd0bb1a
sincos.c File Reference
#include <math.h>
Include dependency graph for sincos.c:

Go to the source code of this file.

Functions

void sincos (double x, double *s, double *c)
 

Function Documentation

◆ sincos()

void sincos ( double  x,
double s,
double c 
)

Definition at line 11 of file sincos.c.

12{
13 *s = sin(x);
14 *c = cos(x);
15}
_STLP_DECLSPEC complex< float > _STLP_CALL cos(const complex< float > &)
_STLP_DECLSPEC complex< float > _STLP_CALL sin(const complex< float > &)
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLdouble s
Definition: gl.h:2039
const GLubyte * c
Definition: glext.h:8905