diff options
| author | Thom Chiovoloni <thom@shift.click> | 2022-10-11 17:22:12 -0700 |
|---|---|---|
| committer | Thom Chiovoloni <thom@shift.click> | 2023-06-21 14:59:37 -0700 |
| commit | bdc3db944cf8da99d80e67e7bb52917512d0a5a7 (patch) | |
| tree | 4bf332994538c0a5854994dbacd2f578e90cc73d /library/std/src/os/mod.rs | |
| parent | 006a26c0b546abc0fbef59a773639582b641e500 (diff) | |
| download | rust-bdc3db944cf8da99d80e67e7bb52917512d0a5a7.tar.gz rust-bdc3db944cf8da99d80e67e7bb52917512d0a5a7.zip | |
wip: Support Apple tvOS in libstd
Diffstat (limited to 'library/std/src/os/mod.rs')
| -rw-r--r-- | library/std/src/os/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/std/src/os/mod.rs b/library/std/src/os/mod.rs index 5b54cc5f2e4..634c3cc4a15 100644 --- a/library/std/src/os/mod.rs +++ b/library/std/src/os/mod.rs @@ -137,6 +137,9 @@ pub mod redox; pub mod solaris; #[cfg(target_os = "solid_asp3")] pub mod solid; +#[cfg(target_os = "tvos")] +#[path = "ios/mod.rs"] +pub(crate) mod tvos; #[cfg(target_os = "vita")] pub mod vita; #[cfg(target_os = "vxworks")] |
