Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
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
);}