Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/TSCBasic/TerminalController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import TSCLibc
#if os(Windows)
import MSVCRT
import CRT
#endif

/// A class to have better control on tty output streams: standard output and standard error.
Expand Down
2 changes: 1 addition & 1 deletion Sources/TSCLibc/libc.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#if canImport(Glibc)
@_exported import Glibc
#elseif os(Windows)
@_exported import MSVCRT
@_exported import CRT
@_exported import WinSDK
#else
@_exported import Darwin.C
Expand Down