summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d430ac75..66a92816 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -20,7 +20,7 @@ extern crate nix_test as nixtest;
// Re-exports
pub use libc::{c_int, c_void};
-pub use errno::{Errno, Result};
+pub use errno::Errno;
pub mod errno;
pub mod features;
@@ -45,12 +45,12 @@ pub mod unistd;
/*
*
- * ===== Error =====
+ * ===== Result / Error =====
*
*/
use libc::c_char;
-use std::ptr;
+use std::{ptr, result};
use std::ffi::{CStr, OsStr};
use std::path::{Path, PathBuf};
use std::os::unix::ffi::OsStrExt;
@@ -59,6 +59,8 @@ use std::fmt;
use std::error;
use libc::PATH_MAX;
+pub type Result<T> = result::Result<T, Error>;
+
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum Error {
Sys(errno::Errno),