We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08bcaac commit ba483c5Copy full SHA for ba483c5
library/std/src/sys/unix/args.rs
@@ -70,7 +70,8 @@ impl DoubleEndedIterator for Args {
70
target_os = "haiku",
71
target_os = "l4re",
72
target_os = "fuchsia",
73
- target_os = "redox"
+ target_os = "redox",
74
+ target_os = "vxworks"
75
))]
76
mod imp {
77
use super::Args;
library/std/src/sys/vxworks/args.rs
library/std/src/sys/vxworks/mod.rs
@@ -13,6 +13,7 @@ pub mod weak;
13
14
#[path = "../unix/alloc.rs"]
15
pub mod alloc;
16
+#[path = "../unix/args.rs"]
17
pub mod args;
18
pub mod cmath;
19
#[path = "../unix/condvar.rs"]
0 commit comments