1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![cfg_attr(not(feature = "std"), no_std)]

#[macro_use]

pub mod helper;
pub mod macros;
pub mod raw;

// Include the generated system calls.
include!(concat!(env!("OUT_DIR"), "/nr.rs"));

pub use self::helper::*;
pub use self::raw::*;

pub use SyscallNo::*;