about summary refs log tree commit diff
path: root/src/libstd/sys/unix/path.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/sys/unix/path.rs')
-rw-r--r--src/libstd/sys/unix/path.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/libstd/sys/unix/path.rs b/src/libstd/sys/unix/path.rs
deleted file mode 100644
index 840a7ae0426..00000000000
--- a/src/libstd/sys/unix/path.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-use crate::ffi::OsStr;
-use crate::path::Prefix;
-
-#[inline]
-pub fn is_sep_byte(b: u8) -> bool {
-    b == b'/'
-}
-
-#[inline]
-pub fn is_verbatim_sep(b: u8) -> bool {
-    b == b'/'
-}
-
-pub fn parse_prefix(_: &OsStr) -> Option<Prefix<'_>> {
-    None
-}
-
-pub const MAIN_SEP_STR: &str = "/";
-pub const MAIN_SEP: char = '/';