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

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)> {