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