xref: /reactos/sdk/lib/crt/math/_hypotf.c (revision c2c66aff)
1 
2 #include <math.h>
3 
4 _Check_return_
5 float
6 __cdecl
7 _hypotf(
8     _In_ float x,
9     _In_ float y)
10 {
11     return (float)_hypot((double)x, (double)y);
12 }
13