repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
alsa.audio: limit the supported frequencies to common set
[AROS.git]
/
compiler
/
stdc
/
math
/
sincosf.c
blob
5dcb504792ce41286a4e34d3ea38d9e5f95c0993
1
/*
2
Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <aros/debug.h>
7
8
#include
"math.h"
9
#include
"math_private.h"
10
11
void
sincos
(
double
x
,
double
*
sin
,
double
*
cos
);
12
13
void
sincosf
(
float
x
,
float
*
sin
,
float
*
cos
)
14
{
15
double
s
,
c
;
16
sincos
(
x
, &
s
, &
c
);
17
*
sin
=
s
;
18
*
cos
=
c
;
19
}