diff options
| author | Nikolay Arhipov <n@arhipov.net> | 2023-06-04 17:44:43 +0300 |
|---|---|---|
| committer | Nikolay Arhipov <n@arhipov.net> | 2023-06-05 19:14:09 +0300 |
| commit | 50117af409ada03f7ee895c12e0009060f8ba4c1 (patch) | |
| tree | 83a8eaa50c78ef150caa34043a58788918722b94 /library/std/src/os/unix/process.rs | |
| parent | 7452822843cf461b56742f0fc648af35889a3070 (diff) | |
| download | rust-50117af409ada03f7ee895c12e0009060f8ba4c1.tar.gz rust-50117af409ada03f7ee895c12e0009060f8ba4c1.zip | |
Std support improvement for ps vita target
Diffstat (limited to 'library/std/src/os/unix/process.rs')
| -rw-r--r-- | library/std/src/os/unix/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs index 729c63d184f..2b40b672d9f 100644 --- a/library/std/src/os/unix/process.rs +++ b/library/std/src/os/unix/process.rs @@ -15,7 +15,7 @@ use crate::sys_common::{AsInner, AsInnerMut, FromInner, IntoInner}; use cfg_if::cfg_if; cfg_if! { - if #[cfg(any(target_os = "vxworks", target_os = "espidf", target_os = "horizon"))] { + if #[cfg(any(target_os = "vxworks", target_os = "espidf", target_os = "horizon", target_os = "vita"))] { type UserId = u16; type GroupId = u16; } else if #[cfg(target_os = "nto")] { |
