Skip to content

Commit d7a80e0

Browse files
committed
Followup to #1649.
1 parent 8e62c98 commit d7a80e0

File tree

1 file changed

+18
-0
lines changed
  • src/unix/linux_like/linux/musl/b64/aarch64

1 file changed

+18
-0
lines changed

src/unix/linux_like/linux/musl/b64/aarch64/mod.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,24 @@ s! {
4949
__unused: [::c_uint; 2],
5050
}
5151

52+
pub struct nlmsghdr {
53+
pub nlmsg_len: u32,
54+
pub nlmsg_type: u16,
55+
pub nlmsg_flags: u16,
56+
pub nlmsg_seq: u32,
57+
pub nlmsg_pid: u32,
58+
}
59+
60+
pub struct nlmsgerr {
61+
pub error: ::c_int,
62+
pub msg: nlmsghdr,
63+
}
64+
65+
pub struct nlattr {
66+
pub nla_len: u16,
67+
pub nla_type: u16,
68+
}
69+
5270
pub struct ipc_perm {
5371
pub __ipc_perm_key: ::key_t,
5472
pub uid: ::uid_t,

0 commit comments

Comments
 (0)