syscalls_rust/lib.rs
1#![cfg(target_os = "linux")]
2
3/// This module contains all the syscalls needed with their signatures and data types.<br>
4/// This is not an implementation of syscalls in rust.<br>
5/// This is just linking the available syscalls using ffi signatures<br>
6pub mod syscalls;
7
8/// This module contains all the type we needed for a syscall functions work<br>
9/// it will not conatain any extra types<br>
10pub mod types;
11
12/// This is a test module for this project
13mod test;