We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fecdc72 commit 42d619cCopy full SHA for 42d619c
src/uu/rm/src/platform/mod.rs
@@ -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
12
+pub use linux::*;
13
14
15
+pub use uucore::safe_traversal::DirFd;
0 commit comments