summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 1dcc71ee..6b321ba2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -51,14 +51,7 @@ use std::os::unix::ffi::OsStrExt;
use std::io;
use std::fmt;
use std::error;
-
-#[cfg(any(target_os = "openbsd", target_os = "netbsd", target_os = "bitrig", target_os = "macos", target_os = "ios"))]
use libc::PATH_MAX;
-#[cfg(not(any(target_os = "openbsd", target_os = "netbsd", target_os = "bitrig", target_os = "macos", target_os = "ios")))]
-const PATH_MAX: c_int = 1024;
-
-
-
pub type Result<T> = result::Result<T, Error>;