Skip to content

Commit fb830e0

Browse files
committed
[Backtracing][Windows] Use CRT, not MSVCRT.
The correct name for the runtime library appears to be CRT, not MSVCRT. rdar://104336548
1 parent 55104aa commit fb830e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Backtracing/BacktraceFormatter.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import Swift
2020
#if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
2121
@_implementationOnly import Darwin
2222
#elseif os(Windows)
23-
@_implementationOnly import MSVCRT
23+
@_implementationOnly import CRT
2424
#elseif os(Linux)
2525
@_implementationOnly import Glibc
2626
#endif

0 commit comments

Comments
 (0)