userspace_build 0.1.123

Standard library for userspace applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
pub mod macros;
pub mod traits;

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "linux")]
pub use linux::*;

#[cfg(not(target_os = "linux"))]
pub mod linux;
#[cfg(not(target_os = "linux"))]
pub use linux::*;

pub struct Os;