diff options
| author | Huang Qi <huangqi3@xiaomi.com> | 2024-09-19 16:00:56 +0800 | 
|---|---|---|
| committer | Huang Qi <huangqi3@xiaomi.com> | 2024-09-24 15:35:40 +0800 | 
| commit | 24f622cf801a840b0ad879ce5907f2cf316e26e8 (patch) | |
| tree | 36784c7813d4ef84d04cb234de49deba1ac76ea4 /library/std/src/os/unix/mod.rs | |
| parent | f5cd2c5888011d4d80311e5b771c6da507d860dd (diff) | |
| download | rust-24f622cf801a840b0ad879ce5907f2cf316e26e8.tar.gz rust-24f622cf801a840b0ad879ce5907f2cf316e26e8.zip | |
Initial std library support for NuttX
Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
Diffstat (limited to 'library/std/src/os/unix/mod.rs')
| -rw-r--r-- | library/std/src/os/unix/mod.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/library/std/src/os/unix/mod.rs b/library/std/src/os/unix/mod.rs index 7d2f0bd4efe..5c2ec8ef994 100644 --- a/library/std/src/os/unix/mod.rs +++ b/library/std/src/os/unix/mod.rs @@ -69,6 +69,8 @@ mod platform { pub use crate::os::netbsd::*; #[cfg(target_os = "nto")] pub use crate::os::nto::*; + #[cfg(target_os = "nuttx")] + pub use crate::os::nuttx::*; #[cfg(target_os = "openbsd")] pub use crate::os::openbsd::*; #[cfg(target_os = "redox")] | 
