libc/new/
mod.rs

1//! This module contains the future directory structure. If possible, new definitions should
2//! get added here.
3//!
4//! Eventually everything should be moved over, and we will move this directory to the top
5//! level in `src`.
6
7cfg_if! {
8    if #[cfg(target_os = "linux")] {
9        mod linux_uapi;
10        pub use linux_uapi::*;
11    } else if #[cfg(target_os = "android")] {
12        mod bionic;
13        pub use bionic::*;
14    }
15}