Remove pub declarations and move to posix::*

This is in order to prepare also for SysV message queues.
This commit is contained in:
finga 2021-06-30 22:46:33 +02:00
parent 606b4de524
commit c2ad74ff15
7 changed files with 24 additions and 18 deletions

11
src/posix.rs Normal file
View file

@ -0,0 +1,11 @@
mod create;
mod info;
mod recv;
mod send;
mod unlink;
pub use create::Create;
pub use info::Info;
pub use recv::Recv;
pub use send::Send;
pub use unlink::Unlink;