Remove unneeded `pub(crate)`

This commit is contained in:
Chris Denton 2024-07-31 13:45:14 +00:00
parent 9169622027
commit e84a7d91b7
No known key found for this signature in database
GPG Key ID: 713472F2F45627DE
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
use crate::io;
use crate::pipe::{PipeReader, PipeWriter};
use crate::process::Stdio;
pub(crate) use crate::sys::pipe::AnonPipe;
pub use crate::sys::pipe::AnonPipe;
#[inline]
pub fn pipe() -> io::Result<(AnonPipe, AnonPipe)> {