rusl 0.5.0

Rust linux interface layer
Documentation
pub use chdir::chdir;
pub use close::close;
pub use copy_file_range::copy_file_range;
pub use dup::{dup2, dup3};
pub use fcntl::{fcntl_get_file_status, fcntl_set_file_status};
pub use get_dents::get_dents;
pub use getuid::get_uid;
pub use mkdir::{mkdir, mkdir_at};
pub use mmap::{mmap, munmap};
pub use mount::{mount, unmount};
pub use open::{open, open_at, open_at_mode, open_mode, open_raw};
pub use pipe::{pipe, pipe2};
pub use read::{read, readv};
pub use rename::{rename, rename_at, rename_at2, rename_flags};
pub use seek::{lseek, Whence};
pub use setgid::setgid;
pub use setpgid::setpgid;
pub use setsid::setsid;
pub use setuid::setuid;
pub use stat::{stat, stat_fd, statat};
pub use swapon::swapon;
pub use uname::uname;
pub use unlink::{rmdir, unlink, unlink_at, unlink_flags, UnlinkFlags};
pub use unshare::unshare;
pub use write::{write, writev};

mod chdir;
mod close;
mod copy_file_range;
mod dup;
mod fcntl;
mod get_dents;
mod getuid;
mod mkdir;
mod mmap;
mod mount;
mod open;
mod pipe;
mod read;
mod rename;
mod seek;
mod setgid;
mod setpgid;
mod setsid;
mod setuid;
mod stat;
mod swapon;
#[cfg(test)]
mod test;
mod uname;
mod unlink;
mod unshare;
mod write;