diff options
Diffstat (limited to 'src/unix/notbsd/linux/mod.rs')
-rw-r--r-- | src/unix/notbsd/linux/mod.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/unix/notbsd/linux/mod.rs b/src/unix/notbsd/linux/mod.rs index 729eb312b4..9f4307d814 100644 --- a/src/unix/notbsd/linux/mod.rs +++ b/src/unix/notbsd/linux/mod.rs @@ -1,6 +1,7 @@ //! Linux-specific definitions for linux-like values use dox::{mem, Option}; +use unix::group; pub type useconds_t = u32; pub type dev_t = u64; @@ -160,13 +161,6 @@ s! { pub pw_shell: *mut ::c_char, } - pub struct group { - pub gr_name: *mut ::c_char, - pub gr_passwd: *mut ::c_char, - pub gr_gid: ::gid_t, - pub gr_mem: *mut *mut ::c_char - } - pub struct spwd { pub sp_namp: *mut ::c_char, pub sp_pwdp: *mut ::c_char, |