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
rom/exec: Added SaveTaskStorage() and the RestoreTaskStorage() functions.
[AROS.git]
/
compiler
/
mlib
/
sincosf.c
blob
a330f1ac9f2262404f293c1ab987a01830d30a87
1
2
#include <aros/debug.h>
3
4
#include
"math.h"
5
#include
"math_private.h"
6
7
void
sincos
(
double
x
,
double
*
sin
,
double
*
cos
);
8
9
void
sincosf
(
float
x
,
float
*
sin
,
float
*
cos
)
10
{
11
double
s
,
c
;
12
sincos
(
x
, &
s
, &
c
);
13
*
sin
=
s
;
14
*
cos
=
c
;
15
}