From fc65f6a0ce74a2d325a04f1b87edfa5ecbfa6ccd Mon Sep 17 00:00:00 2001 From: LinkTed Date: Sun, 4 Oct 2020 19:28:38 +0200 Subject: [PATCH] Fix import errors for `#[cfg(doc)]` target --- library/std/src/sys/unix/ext/net/ancillary.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/library/std/src/sys/unix/ext/net/ancillary.rs b/library/std/src/sys/unix/ext/net/ancillary.rs index e36ad8b956a..e1d0fe125cc 100644 --- a/library/std/src/sys/unix/ext/net/ancillary.rs +++ b/library/std/src/sys/unix/ext/net/ancillary.rs @@ -9,12 +9,11 @@ use crate::ptr::read_unaligned; use crate::slice::from_raw_parts; use crate::sys::net::Socket; -#[cfg(any(target_os = "android", target_os = "linux",))] -use libc::{gid_t, pid_t, uid_t}; // FIXME(#43348): Make libc adapt #[doc(cfg(...))] so we don't need these fake definitions here? #[cfg(not(unix))] #[allow(non_camel_case_types)] mod libc { + pub use libc::c_int; pub struct ucred; pub struct cmsghdr; pub type pid_t = i32; @@ -22,6 +21,9 @@ mod libc { pub type uid_t = u32; } +#[cfg(any(doc, target_os = "android", target_os = "linux",))] +use libc::{gid_t, pid_t, uid_t}; + pub(super) fn recv_vectored_with_ancillary_from( socket: &Socket, bufs: &mut [IoSliceMut<'_>],