repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: Add new APIs tc[gs]etwinsize()
[newlib-cygwin.git]
/
newlib
/
libm
/
machine
/
spu
/
wf_sincos.c
blob
6dc4d0c98dbc47408b225543116508145c91ed3d
1
#include <math.h>
2
#include
"headers/sincosf.h"
3
4
void
sincosf
(
float
angle
,
float
*
sinx
,
float
*
cosx
)
5
{
6
return
_sincosf
(
angle
,
sinx
,
cosx
);
7
}