Skip to content

Commit

Permalink
Followup to rust-lang#1649.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvc94ch committed Dec 3, 2020
1 parent 8e62c98 commit d7a80e0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/unix/linux_like/linux/musl/b64/aarch64/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ s! {
__unused: [::c_uint; 2],
}

pub struct nlmsghdr {
pub nlmsg_len: u32,
pub nlmsg_type: u16,
pub nlmsg_flags: u16,
pub nlmsg_seq: u32,
pub nlmsg_pid: u32,
}

pub struct nlmsgerr {
pub error: ::c_int,
pub msg: nlmsghdr,
}

pub struct nlattr {
pub nla_len: u16,
pub nla_type: u16,
}

pub struct ipc_perm {
pub __ipc_perm_key: ::key_t,
pub uid: ::uid_t,
Expand Down

0 comments on commit d7a80e0

Please sign in to comment.