Skip to content

Commit 6320cf3

Browse files
authored
move src/os_pipe.rs to src/os_pipe/mod.rs (#925)
1 parent 01eecca commit 6320cf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/os_pipe.rs renamed to src/os_pipe/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ pub fn pipe() -> std::io::Result<(File, File)> {
1717
}
1818

1919
#[cfg(unix)]
20-
#[path = "os_pipe/unix.rs"]
20+
#[path = "unix.rs"]
2121
mod sys;
2222

2323
#[cfg(windows)]
24-
#[path = "os_pipe/windows.rs"]
24+
#[path = "windows.rs"]
2525
mod sys;
2626

2727
#[cfg(all(not(unix), not(windows)))]

0 commit comments

Comments
 (0)