Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
math
/
hypotf.c
blob: 36089f8f42cdf368d9a3c085cb0ba314876df6eb [
file
] [
log
] [
blame
]
#include
<math.h>
float
hypotf
(
float
x
,
float
y
)
{
return
(
float
)
_hypot
(
x
,
y
);}