alsa.audio: limit the supported frequencies to common set
[AROS.git] / compiler / stdc / math / sincosf.c
blob5dcb504792ce41286a4e34d3ea38d9e5f95c0993
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include "math.h"
9 #include "math_private.h"
11 void sincos(double x, double *sin, double *cos);
13 void sincosf(float x, float *sin, float *cos)
15 double s, c;
16 sincos(x, &s, &c);
17 *sin = s;
18 *cos = c;