nc 0.8.13

Access system calls directly
Documentation
// Copyright (c) 2022 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Apache-2.0 License that can be found
// in the LICENSE file.

mod _domainset;
mod _iovec;
mod _semaphore;
mod _sigset;
mod _timespec;
mod _timeval;
mod _types;
mod caprights;
mod fcntl;
mod filedesc;
mod ipc;
mod limits;
mod mman;
mod mount;
mod mqueue;
mod msg;
mod poll;
mod reboot;
mod resource;
mod sched;
mod select;
mod sem;
mod shm;
mod signal;
mod socket;
mod stat;
mod syslimits;
mod time;
mod timespec;
#[allow(clippy::module_inception)]
mod types;
mod unistd;
mod uuid;

pub use _domainset::*;
pub use _iovec::*;
pub use _semaphore::*;
pub use _sigset::*;
pub use _timespec::*;
pub use _timeval::*;
pub use _types::*;
pub use caprights::*;
pub use fcntl::*;
pub use filedesc::*;
pub use ipc::*;
pub use limits::*;
pub use mman::*;
pub use mount::*;
pub use mqueue::*;
pub use msg::*;
pub use poll::*;
pub use reboot::*;
pub use resource::*;
pub use sched::*;
pub use select::*;
pub use sem::*;
pub use shm::*;
pub use signal::*;
pub use socket::*;
pub use stat::*;
pub use syslimits::*;
pub use time::*;
pub use timespec::*;
pub use types::*;
pub use unistd::*;
pub use uuid::*;