libc 1.0.0-alpha.4

Raw FFI bindings to platform libraries like libc.
Documentation
//! Common types used by most newlib platforms
use crate::off_t;
#[allow(unused_imports)] // needed for platforms that don't use the prelude here
use crate::prelude::*;

s! {
    #[cfg(all(not(target_os = "vita"), not(target_os = "horizon")))]
    pub struct sigset_t {
        __val: u32,
    }

    pub struct stat {
        pub st_dev: crate::dev_t,
        pub st_ino: crate::ino_t,
        pub st_mode: crate::mode_t,
        pub st_nlink: crate::nlink_t,
        pub st_uid: crate::uid_t,
        pub st_gid: crate::gid_t,
        pub st_rdev: crate::dev_t,
        pub st_size: off_t,
        pub st_atim: crate::timespec,
        pub st_mtim: crate::timespec,
        pub st_ctim: crate::timespec,
        pub st_blksize: crate::blksize_t,
        pub st_blocks: crate::blkcnt_t,
        pub st_spare4: [c_long; 2usize],
    }

    #[cfg(not(target_os = "vita"))]
    pub struct dirent {
        pub d_ino: crate::ino_t,
        pub d_type: c_uchar,
        pub d_name: [c_char; 256usize],
    }
}