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

s_sincos.c « mathfp « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e313e6f1d9e3c5390132f6e123a32a9198cda23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

/* @(#)z_sin.c 1.0 98/08/13 */
/******************************************************************
 * Sine
 *
 * Input:
 *   x - floating point value
 *
 * Output:
 *   sine of x
 *
 * Description:
 *   This routine returns the sine of x.
 *
 *****************************************************************/

#include "fdlibm.h"
#include "zmath.h"

#ifndef _DOUBLE_IS_32BITS

void
_DEFUN (sincos, (x, sinx, cosx),
        double x _AND
        double *sinx _AND
        double *cosx)
{
  *sinx = sin (x);
  *cosx = cos (x);
}

#endif /* _DOUBLE_IS_32BITS */