Welcome to mirror list, hosted at ThFree Co, Russian Federation.

w_sincos.c « math « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 491efa4184f34794cea6d44ebee2d6d666fcd54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* sincos -- currently no more efficient than two separate calls to
   sin and cos. */

#include "fdlibm.h"
#include <errno.h>

#ifndef _DOUBLE_IS_32BITS

#ifdef __STDC__
	void sincos(double x, double *sinx, double *cosx)
#else
	void sincos(x, sinx, cosx)
	double x;
        double *sinx;
        double *cosx;
#endif
{
  *sinx = sin (x);
  *cosx = cos (x);
}

#endif /* defined(_DOUBLE_IS_32BITS) */