//! GNU libc.
//!
//! * Headers: <https://sourceware.org/git/?p=glibc.git> (official)
//! * Headers: <https://github.com/bminor/glibc> (mirror)
//!
//! This module structure is modeled after glibc's source tree. Its build system selects headers
//! from different locations based on the platform, which we mimic here with reexports.
/// Source directory: `posix/`
///
/// <https://github.com/bminor/glibc/tree/master/posix>
/// Source directory: `sysdeps/`
///
/// <https://github.com/bminor/glibc/tree/master/sysdeps>
pub use *;
// FIXME(pthread): eventually all platforms should use this module
pub use *;
pub use *;