Sign in
third-party-mirror
/
mingw-w64
/
7cdb53961187ee6d1a487af1d45951247c6ef66a
/
.
/
mingw-w64-crt
/
math
/
frexpf.c
blob: 68c66407c3c442f8398ae4606cd0063e2fd3d825 [
file
] [
log
] [
blame
]
extern
double
__cdecl frexp
(
double
_X
,
int
*
_Y
);
float
frexpf
(
float
x
,
int
*
expn
)
{
return
(
float
)
frexp
(
x
,
expn
);}