Skip to content

Commit

Permalink
Import new Android overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
finagolfin committed Jul 4, 2024
1 parent d66d015 commit 2e0c72c
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 @@ -29,6 +29,8 @@ import Darwin
import CRT
#elseif canImport(WASILibc)
import WASILibc
#elseif canImport(Android)
import Android
#endif

enum Platform {}
Expand Down Expand Up @@ -98,6 +100,8 @@ extension Platform {
ucrt._exit(code)
#elseif canImport(WASILibc)
WASILibc.exit(code)
#elseif canImport(Android)
Android.exit(code)
#endif
}
}
Expand All @@ -120,7 +124,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 2e0c72c

Please sign in to comment.