Files
SideStore/SideStoreApp/Sources/Cargo/swiftlint/Helpers/ExitHelper.swift
2023-03-10 19:30:59 -05:00

13 lines
211 B
Swift

#if os(Linux)
import Glibc
#endif
enum ExitHelper {
static func successfullyExit() {
#if os(Linux)
// Workaround for https://github.com/apple/swift/issues/59961
Glibc.exit(0)
#endif
}
}