1 2 #include <math.h> 3 4 #if (_MSC_VER >= 1920) 5 #pragma function(_hypotf) 6 #endif 7 8 _Check_return_ 9 float 10 __cdecl 11 _hypotf( 12 _In_ float x, 13 _In_ float y) 14 { 15 return (float)_hypot((double)x, (double)y); 16 } 17