syscalls_rust/
lib.rs

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