in Sources/_NumericsShims/include/_NumericsShims.h [125:132]
HEADER_SHIM float libm_hypotf(float x, float y) { #if defined(_WIN32) extern float _hypotf(float, float); return _hypotf(x, y); #else return __builtin_hypotf(x, y); #endif }