Skip to content

Commit 5150981

Browse files
authored
Merge pull request #23791 from compnerd/you-know-nothing-clang
2 parents 8fc305c + c697ddd commit 5150981

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stdlib/public/SwiftShims/LibcShims.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ float _swift_stdlib_log1pf(float x) {
214214
static inline SWIFT_ALWAYS_INLINE
215215
float _swift_stdlib_hypotf(float x, float y) {
216216
#if defined(_WIN32)
217+
extern float _hypotf(float, float);
217218
return _hypotf(x, y);
218219
#else
219220
return __builtin_hypotf(x, y);

0 commit comments

Comments
 (0)