index
:
cygnal
cygnal-2.5.2
cygnal-2.9.0-branch
cygnal-3-1-6-98-branch
cygnal-3-1-98-branch
cygwin-master
"Cygwin Native Application Lib" --- http://www.kylheku.com/cygnal
kaz@kylheku.com
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
winsup
/
mingw
/
mingwex
/
math
/
frexpf.c
blob: df262abc558c2696741e03a3dc6ea554f69c5028 (
plain
)
1
2
3
#include
<math.h>
float
frexpf
(
float
x
,
int
*
expn
)
{
return
(
float
)
frexp
(
x
,
expn
);
}