libc_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//! This crate provides the `libc` types.
//!
//!
#![no_std]
#![deny(warnings)]
#![deny(missing_docs)]
#![deny(clippy::all)]

#[macro_use]
extern crate bitflags;

#[macro_use]
mod utils;

mod arch;
pub mod consts;
pub mod elf;
pub mod epoll;
pub mod fcntl;
pub mod futex;
pub mod internal;
pub mod ioctl;
pub mod mman;
pub mod others;
pub mod poll;
pub mod resource;
pub mod sched;
pub mod signal;
pub mod termios;
pub mod time;
pub mod times;
pub mod types;
pub mod utsname;