chore: add vendor dependencies for kauma build
This commit is contained in:
parent
7c94e5d8fb
commit
067ef6141c
1758 changed files with 398473 additions and 0 deletions
16
vendor/libc/src/unix/no_align.rs
vendored
Normal file
16
vendor/libc/src/unix/no_align.rs
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
s! {
|
||||
pub struct in6_addr {
|
||||
pub s6_addr: [u8; 16],
|
||||
__align: [u32; 0],
|
||||
}
|
||||
}
|
||||
|
||||
pub const IN6ADDR_LOOPBACK_INIT: in6_addr = in6_addr {
|
||||
s6_addr: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
|
||||
__align: [0u32; 0],
|
||||
};
|
||||
|
||||
pub const IN6ADDR_ANY_INIT: in6_addr = in6_addr {
|
||||
s6_addr: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
||||
__align: [0u32; 0],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue