Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ fn main() {
}

if target_env == "gnu"
&& matches!(target_os.as_str(), "linux" | "windows")
&& matches!(target_os.as_str(), "linux" | "windows" | "hurd")
&& target_ptr_width == "32"
&& target_arch != "riscv32"
&& target_arch != "x86_64"
Expand Down
8 changes: 4 additions & 4 deletions src/unix/hurd/b32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ pub type __u_quad_t = c_ulonglong;
pub type __intmax_t = c_longlong;
pub type __uintmax_t = c_ulonglong;

pub type __squad_type = crate::__int64_t;
pub type __uquad_type = crate::__uint64_t;
pub type __squad_type = __int64_t;
pub type __uquad_type = __uint64_t;
Comment on lines -18 to +19

@tgross35 tgross35 Jul 9, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hurd(b32): simplify item paths: LGTM @ acfbb70

View changes since the review

pub type __sword_type = c_int;
pub type __uword_type = c_uint;
pub type __slong32_type = c_long;
pub type __ulong32_type = c_ulong;
pub type __s64_type = crate::__int64_t;
pub type __u64_type = crate::__uint64_t;
pub type __s64_type = __int64_t;
pub type __u64_type = __uint64_t;

pub type __ipc_pid_t = c_ushort;

Expand Down
Loading