libc_core/lib.rs
1//! This crate provides the `libc` types.
2//!
3//!
4#![no_std]
5#![deny(warnings)]
6#![deny(missing_docs)]
7#![deny(clippy::all)]
8
9#[macro_use]
10extern crate bitflags;
11
12#[macro_use]
13mod utils;
14
15mod arch;
16pub mod consts;
17pub mod elf;
18pub mod epoll;
19pub mod fcntl;
20pub mod futex;
21pub mod internal;
22pub mod ioctl;
23pub mod mman;
24pub mod others;
25pub mod poll;
26pub mod resource;
27pub mod sched;
28pub mod signal;
29pub mod termios;
30pub mod time;
31pub mod times;
32pub mod types;
33pub mod utsname;