Skip to content

Commit 42d619c

Browse files
committed
more fixe
1 parent fecdc72 commit 42d619c

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/uu/rm/src/platform/mod.rs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This file is part of the uutils coreutils package.
2+
//
3+
// For the full copyright and license information, please view the LICENSE
4+
// file that was distributed with this source code.
5+
6+
// Platform-specific implementations for the rm utility
7+
8+
#[cfg(target_os = "linux")]
9+
pub mod linux;
10+
11+
#[cfg(target_os = "linux")]
12+
pub use linux::*;
13+
14+
#[cfg(target_os = "linux")]
15+
pub use uucore::safe_traversal::DirFd;

0 commit comments

Comments
 (0)