Skip to content

Commit

Permalink
Import new Android overlay (apple#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
finagolfin authored Jul 16, 2024
1 parent bb10ca8 commit 4a2e245
Showing 1 changed file with 5 additions and 1 deletion.
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

0 comments on commit 4a2e245

Please sign in to comment.