libc 0.2.177

Raw FFI bindings to platform libraries like libc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! This module contains the future directory structure. If possible, new definitions should
//! get added here.
//!
//! Eventually everything should be moved over, and we will move this directory to the top
//! level in `src`.

cfg_if! {
    if #[cfg(target_os = "linux")] {
        mod linux_uapi;
        pub use linux_uapi::*;
    } else if #[cfg(target_os = "android")] {
        mod bionic;
        pub use bionic::*;
    }
}