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