Skip to content

Commit

Permalink
move src/os_pipe.rs to src/os_pipe/mod.rs (#925)
Browse files Browse the repository at this point in the history
  • Loading branch information
Be-ing committed Jan 29, 2024
1 parent 01eecca commit 6320cf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/os_pipe.rs → src/os_pipe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ pub fn pipe() -> std::io::Result<(File, File)> {
}

#[cfg(unix)]
#[path = "os_pipe/unix.rs"]
#[path = "unix.rs"]
mod sys;

#[cfg(windows)]
#[path = "os_pipe/windows.rs"]
#[path = "windows.rs"]
mod sys;

#[cfg(all(not(unix), not(windows)))]
Expand Down

0 comments on commit 6320cf3

Please sign in to comment.