mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-09 20:38:47 +01:00
10 lines
284 B
Swift
10 lines
284 B
Swift
#if canImport(System)
|
|
import System
|
|
public typealias FilePath = System.FilePath
|
|
public typealias FileDescriptor = System.FileDescriptor
|
|
#else
|
|
import SystemPackage
|
|
public typealias FilePath = SystemPackage.FilePath
|
|
public typealias FileDescriptor = SystemPackage.FileDescriptor
|
|
#endif
|