Skip to content
Merged
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
Import new Android overlay
  • Loading branch information
finagolfin committed Jul 16, 2024
commit 420eb0775a6c89417fcb5416ce99a76616aa2a64
6 changes: 5 additions & 1 deletion Sources/ArgumentParser/Utilities/Platform.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import Darwin
@preconcurrency import CRT
#elseif canImport(WASILibc)
@preconcurrency import WASILibc
#elseif canImport(Android)
@preconcurrency import Android
#endif

enum Platform {}
Expand Down Expand Up @@ -95,6 +97,8 @@ extension Platform {
ucrt._exit(code)
#elseif canImport(WASILibc)
WASILibc.exit(code)
#elseif canImport(Android)
Android.exit(code)
#endif
}
}
Expand All @@ -117,7 +121,7 @@ extension Platform {

// MARK: Terminal size

#if canImport(Glibc)
#if canImport(Glibc) || canImport(Android)
func ioctl(_ a: Int32, _ b: Int32, _ p: UnsafeMutableRawPointer) -> Int32 {
ioctl(CInt(a), UInt(b), p)
}
Expand Down