We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fc305c + c697ddd commit 5150981Copy full SHA for 5150981
stdlib/public/SwiftShims/LibcShims.h
@@ -214,6 +214,7 @@ float _swift_stdlib_log1pf(float x) {
214
static inline SWIFT_ALWAYS_INLINE
215
float _swift_stdlib_hypotf(float x, float y) {
216
#if defined(_WIN32)
217
+ extern float _hypotf(float, float);
218
return _hypotf(x, y);
219
#else
220
return __builtin_hypotf(x, y);
0 commit comments