about summary refs log tree commit diff
path: root/library/std/src/sys/unix/args.rs
diff options
context:
space:
mode:
authorIan Chamberlain <ian.h.chamberlain@gmail.com>2022-02-09 23:54:38 -0500
committerMark Drobnak <mark.drobnak@gmail.com>2022-06-13 20:44:57 -0700
commit19f68a272912beaa68cb6c172e16ee6f21e96bf8 (patch)
tree3b22aa8e7fba5a5b26c45f7eb1a9dfd1a87ff794 /library/std/src/sys/unix/args.rs
parent06eae300347447545f5d0e8e94c673da69a1d7fd (diff)
downloadrust-19f68a272912beaa68cb6c172e16ee6f21e96bf8.tar.gz
rust-19f68a272912beaa68cb6c172e16ee6f21e96bf8.zip
Enable argv support for horizon OS
See https://github.com/Meziu/rust-horizon/pull/9
Diffstat (limited to 'library/std/src/sys/unix/args.rs')
-rw-r--r--library/std/src/sys/unix/args.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/args.rs b/library/std/src/sys/unix/args.rs
index ee5e3983ac2..79964e2b238 100644
--- a/library/std/src/sys/unix/args.rs
+++ b/library/std/src/sys/unix/args.rs
@@ -68,7 +68,8 @@ impl DoubleEndedIterator for Args {
     target_os = "l4re",
     target_os = "fuchsia",
     target_os = "redox",
-    target_os = "vxworks"
+    target_os = "vxworks",
+    target_os = "horizon"
 ))]
 mod imp {
     use super::Args;