[go: up one dir, main page]

libc 0.2.178

Raw FFI bindings to platform libraries like libc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! POSIX APIs that are used by a number of platforms
//!
//! These can be found at: <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/contents.html>.

// FIXME(pthread): eventually all platforms should use this module
#[cfg(any(
    target_os = "android",
    target_os = "emscripten",
    target_os = "l4re",
    target_os = "linux",
    target_vendor = "apple",
))]
pub(crate) mod pthread;
pub(crate) mod unistd;