Remove pub
declarations and move to posix::*
This is in order to prepare also for SysV message queues.
This commit is contained in:
parent
606b4de524
commit
c2ad74ff15
7 changed files with 24 additions and 18 deletions
11
src/posix.rs
Normal file
11
src/posix.rs
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue