diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2020-10-07 20:38:25 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2020-10-16 06:19:00 +0200 |
| commit | c909ff957752104e1c52d20d7e0e98cf50781a25 (patch) | |
| tree | 95eb78b7c2d2df4f09759a0f9b9c092b65822ee8 /library/std/src/sys | |
| parent | 66c9b04e947996c9ac3c573228ed2a641fb6f249 (diff) | |
| download | rust-c909ff957752104e1c52d20d7e0e98cf50781a25.tar.gz rust-c909ff957752104e1c52d20d7e0e98cf50781a25.zip | |
Add weak macro to vxworks.
Diffstat (limited to 'library/std/src/sys')
| -rw-r--r-- | library/std/src/sys/vxworks/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/sys/vxworks/mod.rs b/library/std/src/sys/vxworks/mod.rs index ed82122e727..c1e8bc79b6c 100644 --- a/library/std/src/sys/vxworks/mod.rs +++ b/library/std/src/sys/vxworks/mod.rs @@ -7,6 +7,10 @@ pub use self::rand::hashmap_random_keys; pub use crate::os::vxworks as platform; pub use libc::strlen; +#[macro_use] +#[path = "../unix/weak.rs"] +pub mod weak; + #[path = "../unix/alloc.rs"] pub mod alloc; pub mod args; |
