sys/lib.rs
1//! # Capability-based System Interfaces
2//!
3//! This library provides _**Sys**tem Interfaces_ following a
4//! **capability-based design**. It does not require any particular runtime,
5//! but can optionally be combined with the Rust Standard Library.
6
7#![no_std]
8
9extern crate alloc;
10extern crate core;
11
12#[cfg(any(test, feature = "std"))]
13extern crate std;
14
15pub mod ffi;
16pub mod linux;