diff options
| author | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 | 
|---|---|---|
| committer | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 | 
| commit | 49be10a8179165d24bbb8eb3490c4ca6f94b42c4 (patch) | |
| tree | 642978648e57ba8b162a7378e8754df85ca83b37 /libc/src/unix/uclibc/arm | |
| parent | 9f3991a74fa5124e298582afa60b229dd005be40 (diff) | |
| download | nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.gz nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.bz2 | |
Update libc crate to 0.2.66
This change updates the libc crate to version 0.2.66.
Import subrepo libc/:libc at 4f11029a68040c90acf771976b019c1ef273a8cd
Diffstat (limited to 'libc/src/unix/uclibc/arm')
| -rw-r--r-- | libc/src/unix/uclibc/arm/mod.rs | 38 | 
1 files changed, 20 insertions, 18 deletions
| diff --git a/libc/src/unix/uclibc/arm/mod.rs b/libc/src/unix/uclibc/arm/mod.rs index 7680dcf..613a11f 100644 --- a/libc/src/unix/uclibc/arm/mod.rs +++ b/libc/src/unix/uclibc/arm/mod.rs @@ -408,10 +408,6 @@ pub const F_SETLKW: ::c_int = 0x7;  pub const HUPCL: ::tcflag_t = 0x400;  pub const ICANON: ::tcflag_t = 0x2;  pub const IEXTEN: ::tcflag_t = 0x8000; -pub const IPV6_MULTICAST_HOPS: ::c_int = 0x12; -pub const IPV6_MULTICAST_IF: ::c_int = 0x11; -pub const IPV6_UNICAST_HOPS: ::c_int = 0x10; -pub const IP_MULTICAST_IF: ::c_int = 0x20;  pub const ISIG: ::tcflag_t = 0x1;  pub const IUTF8: ::tcflag_t = 0x4000;  pub const IXOFF: ::tcflag_t = 0x1000; @@ -1018,22 +1014,28 @@ f! {  } -extern { +extern "C" {      pub fn ioctl(fd: ::c_int, request: ::c_ulong, ...) -> ::c_int; -    pub fn openpty(amaster: *mut ::c_int, -                aslave: *mut ::c_int, -                name: *mut ::c_char, -                termp: *mut termios, -                winp: *mut ::winsize) -> ::c_int; +    pub fn openpty( +        amaster: *mut ::c_int, +        aslave: *mut ::c_int, +        name: *mut ::c_char, +        termp: *mut termios, +        winp: *mut ::winsize, +    ) -> ::c_int;      pub fn setns(fd: ::c_int, nstype: ::c_int) -> ::c_int; -    pub fn pwritev(fd: ::c_int, -                   iov: *const ::iovec, -                   iovcnt: ::c_int, -                   offset: ::off_t) -> ::ssize_t; -    pub fn preadv(fd: ::c_int, -                  iov: *const ::iovec, -                  iovcnt: ::c_int, -                  offset: ::off_t) -> ::ssize_t; +    pub fn pwritev( +        fd: ::c_int, +        iov: *const ::iovec, +        iovcnt: ::c_int, +        offset: ::off_t, +    ) -> ::ssize_t; +    pub fn preadv( +        fd: ::c_int, +        iov: *const ::iovec, +        iovcnt: ::c_int, +        offset: ::off_t, +    ) -> ::ssize_t;  }  cfg_if! { | 
