mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-29 00:46:32 +00:00
Fix struct passwd and _SC_GETPW_R_SIZE_MAX for DragonFly
This commit is contained in:
parent
e62fec36b9
commit
859f4d9f16
@ -72,7 +72,8 @@ pub const WNOHANG: libc::c_int = 1;
|
||||
#[cfg(target_os = "linux")]
|
||||
pub const _SC_GETPW_R_SIZE_MAX: libc::c_int = 70;
|
||||
#[cfg(any(target_os = "macos",
|
||||
target_os = "freebsd"))]
|
||||
target_os = "freebsd",
|
||||
target_os = "dragonfly"))]
|
||||
pub const _SC_GETPW_R_SIZE_MAX: libc::c_int = 71;
|
||||
#[cfg(target_os = "openbsd")]
|
||||
pub const _SC_GETPW_R_SIZE_MAX: libc::c_int = 101;
|
||||
@ -94,6 +95,7 @@ pub struct passwd {
|
||||
#[repr(C)]
|
||||
#[cfg(any(target_os = "macos",
|
||||
target_os = "freebsd",
|
||||
target_os = "dragonfly",
|
||||
target_os = "openbsd"))]
|
||||
pub struct passwd {
|
||||
pub pw_name: *mut libc::c_char,
|
||||
|
Loading…
Reference in New Issue
Block a user