>>> bkt: Building testing/bkt 0.8.0-r0 (using abuild 3.13.0-r3) started Thu, 11 Jul 2024 15:09:13 +0000 >>> bkt: Checking sanity of /home/buildozer/aports/testing/bkt/APKBUILD... >>> bkt: Analyzing dependencies... >>> bkt: Installing for build: build-base cargo cargo-auditable bash (1/11) Installing libffi (3.4.6-r0) (2/11) Installing xz-libs (5.6.2-r0) (3/11) Installing libxml2 (2.12.8-r0) (4/11) Installing llvm18-libs (18.1.8-r0) (5/11) Installing scudo-malloc (18.1.8-r0) (6/11) Installing rust (1.79.0-r1) (7/11) Installing cargo (1.79.0-r1) (8/11) Installing cargo-auditable (0.6.2-r0) (9/11) Installing readline (8.2.10-r0) (10/11) Installing bash (5.2.26-r0) Executing bash-5.2.26-r0.post-install (11/11) Installing .makedepends-bkt (20240711.150915) Executing busybox-1.36.1-r31.trigger OK: 507 MiB in 110 packages >>> bkt: Cleaning up srcdir >>> bkt: Cleaning up pkgdir >>> bkt: Cleaning up tmpdir >>> bkt: Fetching https://distfiles.alpinelinux.org/distfiles/edge/bkt-0.8.0.tar.gz Connecting to distfiles.alpinelinux.org (172.105.82.32:443) saving to '/var/cache/distfiles/bkt-0.8.0.tar.gz.part' bkt-0.8.0.tar.gz.par 100% |********************************| 36147 0:00:00 ETA '/var/cache/distfiles/bkt-0.8.0.tar.gz.part' saved >>> bkt: Fetching https://distfiles.alpinelinux.org/distfiles/edge/bkt-0.8.0.tar.gz >>> bkt: Checking sha512sums... bkt-0.8.0.tar.gz: OK >>> bkt: Unpacking /var/cache/distfiles/bkt-0.8.0.tar.gz... Updating crates.io index Downloading crates ... Downloaded anstyle v1.0.4 Downloaded bitflags v2.4.2 Downloaded proc-macro2 v1.0.78 Downloaded anyhow v1.0.79 Downloaded aho-corasick v1.1.2 Downloaded regex v1.10.3 Downloaded regex-automata v0.4.4 Downloaded test_dir v0.2.0 Compiling libc v0.2.152 Compiling proc-macro2 v1.0.78 Compiling unicode-ident v1.0.12 Compiling rustix v0.38.30 Compiling bitflags v2.4.2 Compiling linux-raw-sys v0.4.13 Compiling cfg-if v1.0.0 Compiling serde v1.0.195 Compiling ppv-lite86 v0.2.17 Compiling heck v0.4.1 Compiling anstyle v1.0.4 Compiling clap_lex v0.6.0 Compiling anyhow v1.0.79 Compiling humantime v2.1.0 Compiling base64 v0.21.7 Compiling quote v1.0.35 Compiling syn v2.0.48 Compiling serde_derive v1.0.195 Compiling clap_derive v4.4.7 error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:52:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 52 | pub gr_name: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 52 | pub gr_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 155+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 52 - pub gr_name: *mut ::c_char, 52 + pub gr_name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:53:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 53 | pub gr_passwd: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 53 | pub gr_passwd: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 155+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 53 - pub gr_passwd: *mut ::c_char, 53 + pub gr_passwd: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:55:33 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 55 | pub gr_mem: *mut *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 55 | pub gr_mem: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 155+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 55 - pub gr_mem: *mut *mut ::c_char, 55 + pub gr_mem: *mut *mut c_char, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:75:24 | 75 | pub tv_nsec: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 155+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 75 - pub tv_nsec: ::c_long, 75 + pub tv_nsec: c_long, | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:86:24 | 86 | pub ru_maxrss: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 155+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:89:23 | 89 | pub ru_ixrss: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 155+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:92:23 | 92 | pub ru_idrss: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 155+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:95:23 | 95 | pub ru_isrss: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 155+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:98:24 | 98 | pub ru_minflt: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 155+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:101:24 | 101 | pub ru_majflt: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:104:23 | 104 | pub ru_nswap: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:107:25 | 107 | pub ru_inblock: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:110:25 | 110 | pub ru_oublock: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:113:24 | 113 | pub ru_msgsnd: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:116:24 | 116 | pub ru_msgrcv: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:119:26 | 119 | pub ru_nsignals: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:122:23 | 122 | pub ru_nvcsw: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:125:24 | 125 | pub ru_nivcsw: c_long, | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:130:22 | 130 | __reserved: [c_long; 16], | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:142:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 142 | pub h_name: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 142 | pub h_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 142 - pub h_name: *mut ::c_char, 142 + pub h_name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:143:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 143 | pub h_aliases: *mut *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 143 | pub h_aliases: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 143 - pub h_aliases: *mut *mut ::c_char, 143 + pub h_aliases: *mut *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:146:38 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 146 | pub h_addr_list: *mut *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 146 | pub h_addr_list: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 146 - pub h_addr_list: *mut *mut ::c_char, 146 + pub h_addr_list: *mut *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:192:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 192 | pub s_name: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 192 | pub s_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 192 - pub s_name: *mut ::c_char, 192 + pub s_name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:193:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 193 | pub s_aliases: *mut *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 193 | pub s_aliases: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 193 - pub s_aliases: *mut *mut ::c_char, 193 + pub s_aliases: *mut *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:195:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 195 | pub s_proto: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 195 | pub s_proto: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 195 - pub s_proto: *mut ::c_char, 195 + pub s_proto: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:199:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 199 | pub p_name: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 199 | pub p_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 199 - pub p_name: *mut ::c_char, 199 + pub p_name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:200:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 200 | pub p_aliases: *mut *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 200 | pub p_aliases: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 200 - pub p_aliases: *mut *mut ::c_char, 200 + pub p_aliases: *mut *mut c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:452:35 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 452 | pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 452 | pub fn fopen(filename: *const c_schar, mode: *const c_char) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:452:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 452 | pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 452 | pub fn fopen(filename: *const c_char, mode: *const c_schar) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:457:37 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 457 | pub fn freopen(filename: *const c_char, mode: *const c_char, file: *mut FILE) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 457 | pub fn freopen(filename: *const c_schar, mode: *const c_char, file: *mut FILE) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:457:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 457 | pub fn freopen(filename: *const c_char, mode: *const c_char, file: *mut FILE) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 457 | pub fn freopen(filename: *const c_char, mode: *const c_schar, file: *mut FILE) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:461:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 461 | pub fn remove(filename: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 461 | pub fn remove(filename: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:462:35 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 462 | pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 462 | pub fn rename(oldname: *const c_schar, newname: *const c_char) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:462:59 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 462 | pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 462 | pub fn rename(oldname: *const c_char, newname: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:464:52 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 464 | pub fn setvbuf(stream: *mut FILE, buffer: *mut c_char, mode: c_int, size: size_t) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 464 | pub fn setvbuf(stream: *mut FILE, buffer: *mut c_schar, mode: c_int, size: size_t) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:465:48 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 465 | pub fn setbuf(stream: *mut FILE, buf: *mut c_char); | ^^^^^^ | help: a type alias with a similar name exists | 465 | pub fn setbuf(stream: *mut FILE, buf: *mut c_schar); | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:469:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 469 | pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 469 | pub fn fgets(buf: *mut c_schar, n: c_int, stream: *mut FILE) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:469:73 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 469 | pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 469 | pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:475:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 475 | pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 475 | pub fn fputs(s: *const c_schar, stream: *mut FILE) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:476:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 476 | pub fn puts(s: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 476 | pub fn puts(s: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:484:45 | 484 | pub fn fseek(stream: *mut FILE, offset: c_long, whence: c_int) -> c_int; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:485:40 | 485 | pub fn ftell(stream: *mut FILE) -> c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:494:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 494 | pub fn perror(s: *const c_char); | ^^^^^^ | help: a type alias with a similar name exists | 494 | pub fn perror(s: *const c_schar); | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:495:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 495 | pub fn atof(s: *const c_char) -> c_double; | ^^^^^^ | help: a type alias with a similar name exists | 495 | pub fn atof(s: *const c_schar) -> c_double; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:496:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 496 | pub fn atoi(s: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 496 | pub fn atoi(s: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:497:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 497 | pub fn atol(s: *const c_char) -> c_long; | ^^^^^^ | help: a type alias with a similar name exists | 497 | pub fn atol(s: *const c_schar) -> c_long; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:497:38 | 497 | pub fn atol(s: *const c_char) -> c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:498:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 498 | pub fn atoll(s: *const c_char) -> c_longlong; | ^^^^^^ | help: a type alias with a similar name exists | 498 | pub fn atoll(s: *const c_schar) -> c_longlong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:503:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 503 | pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double; | ^^^^^^ | help: a type alias with a similar name exists | 503 | pub fn strtod(s: *const c_schar, endp: *mut *mut c_char) -> c_double; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:503:53 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 503 | pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double; | ^^^^^^ | help: a type alias with a similar name exists | 503 | pub fn strtod(s: *const c_char, endp: *mut *mut c_schar) -> c_double; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:504:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 504 | pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float; | ^^^^^^ | help: a type alias with a similar name exists | 504 | pub fn strtof(s: *const c_schar, endp: *mut *mut c_char) -> c_float; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:504:53 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 504 | pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float; | ^^^^^^ | help: a type alias with a similar name exists | 504 | pub fn strtof(s: *const c_char, endp: *mut *mut c_schar) -> c_float; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:505:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 505 | pub fn strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long; | ^^^^^^ | help: a type alias with a similar name exists | 505 | pub fn strtol(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_long; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:505:53 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 505 | pub fn strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long; | ^^^^^^ | help: a type alias with a similar name exists | 505 | pub fn strtol(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_long; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:505:77 | 505 | pub fn strtol(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:506:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 506 | pub fn strtoll(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_longlong; | ^^^^^^ | help: a type alias with a similar name exists | 506 | pub fn strtoll(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_longlong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:506:54 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 506 | pub fn strtoll(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_longlong; | ^^^^^^ | help: a type alias with a similar name exists | 506 | pub fn strtoll(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_longlong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:507:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 507 | pub fn strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong; | ^^^^^^ | help: a type alias with a similar name exists | 507 | pub fn strtoul(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_ulong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:507:54 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 507 | pub fn strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong; | ^^^^^^ | help: a type alias with a similar name exists | 507 | pub fn strtoul(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_ulong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_ulong` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:507:78 | 507 | pub fn strtoul(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulong; | ^^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_ulong; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:508:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 508 | pub fn strtoull(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulonglong; | ^^^^^^ | help: a type alias with a similar name exists | 508 | pub fn strtoull(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_ulonglong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:508:55 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 508 | pub fn strtoull(s: *const c_char, endp: *mut *mut c_char, base: c_int) -> c_ulonglong; | ^^^^^^ | help: a type alias with a similar name exists | 508 | pub fn strtoull(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_ulonglong; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:520:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 520 | pub fn system(s: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 520 | pub fn system(s: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:521:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 521 | pub fn getenv(s: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 521 | pub fn getenv(s: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:521:45 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 521 | pub fn getenv(s: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 521 | pub fn getenv(s: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:523:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 523 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 523 | pub fn strcpy(dst: *mut c_schar, src: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:523:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 523 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 523 | pub fn strcpy(dst: *mut c_char, src: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:523:65 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 523 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 523 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:524:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 524 | pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 524 | pub fn strncpy(dst: *mut c_schar, src: *const c_char, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:524:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 524 | pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 524 | pub fn strncpy(dst: *mut c_char, src: *const c_schar, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:524:77 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 524 | pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 524 | pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:525:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 525 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 525 | pub fn stpcpy(dst: *mut c_schar, src: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:525:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 525 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 525 | pub fn stpcpy(dst: *mut c_char, src: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:525:65 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 525 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 525 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:526:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 526 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 526 | pub fn strcat(s: *mut c_schar, ct: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:526:46 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 526 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 526 | pub fn strcat(s: *mut c_char, ct: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:526:62 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 526 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 526 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:527:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 527 | pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 527 | pub fn strncat(s: *mut c_schar, ct: *const c_char, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:527:47 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 527 | pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 527 | pub fn strncat(s: *mut c_char, ct: *const c_schar, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:527:74 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 527 | pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 527 | pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:528:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 528 | pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 528 | pub fn strcmp(cs: *const c_schar, ct: *const c_char) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:528:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 528 | pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 528 | pub fn strcmp(cs: *const c_char, ct: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:529:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 529 | pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 529 | pub fn strncmp(cs: *const c_schar, ct: *const c_char, n: size_t) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:529:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 529 | pub fn strncmp(cs: *const c_char, ct: *const c_char, n: size_t) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 529 | pub fn strncmp(cs: *const c_char, ct: *const c_schar, n: size_t) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:530:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 530 | pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 530 | pub fn strcoll(cs: *const c_schar, ct: *const c_char) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:530:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 530 | pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 530 | pub fn strcoll(cs: *const c_char, ct: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:531:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 531 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 531 | pub fn strchr(cs: *const c_schar, c: c_int) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:531:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 531 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 531 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:532:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 532 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 532 | pub fn strrchr(cs: *const c_schar, c: c_int) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:532:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 532 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 532 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:533:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 533 | pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 533 | pub fn strspn(cs: *const c_schar, ct: *const c_char) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:533:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 533 | pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 533 | pub fn strspn(cs: *const c_char, ct: *const c_schar) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:534:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 534 | pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 534 | pub fn strcspn(cs: *const c_schar, ct: *const c_char) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:534:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 534 | pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 534 | pub fn strcspn(cs: *const c_char, ct: *const c_schar) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:535:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 535 | pub fn strdup(cs: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 535 | pub fn strdup(cs: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:535:46 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 535 | pub fn strdup(cs: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 535 | pub fn strdup(cs: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:536:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 536 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 536 | pub fn strndup(cs: *const c_schar, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:536:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 536 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 536 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:537:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 537 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 537 | pub fn strpbrk(cs: *const c_schar, ct: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:537:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 537 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 537 | pub fn strpbrk(cs: *const c_char, ct: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:537:66 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 537 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 537 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:538:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 538 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 538 | pub fn strstr(cs: *const c_schar, ct: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:538:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 538 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 538 | pub fn strstr(cs: *const c_char, ct: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:538:65 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 538 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 538 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:539:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 539 | pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 539 | pub fn strcasecmp(s1: *const c_schar, s2: *const c_char) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:539:53 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 539 | pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 539 | pub fn strcasecmp(s1: *const c_char, s2: *const c_schar) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:540:35 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 540 | pub fn strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 540 | pub fn strncasecmp(s1: *const c_schar, s2: *const c_char, n: size_t) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:540:54 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 540 | pub fn strncasecmp(s1: *const c_char, s2: *const c_char, n: size_t) -> c_int; | ^^^^^^ | help: a type alias with a similar name exists | 540 | pub fn strncasecmp(s1: *const c_char, s2: *const c_schar, n: size_t) -> c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:541:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 541 | pub fn strlen(cs: *const c_char) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 541 | pub fn strlen(cs: *const c_schar) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:542:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 542 | pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 542 | pub fn strnlen(cs: *const c_schar, maxlen: size_t) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:547:39 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 547 | pub fn strerror(n: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 547 | pub fn strerror(n: c_int) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:548:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 548 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 548 | pub fn strtok(s: *mut c_schar, t: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:548:45 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 548 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 548 | pub fn strtok(s: *mut c_char, t: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:548:61 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 548 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 548 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:549:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 549 | pub fn strtok_r(s: *mut c_schar, t: *const c_char, p: *mut *mut c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:549:47 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 549 | pub fn strtok_r(s: *mut c_char, t: *const c_schar, p: *mut *mut c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:549:68 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:549:84 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 549 | pub fn strtok_r(s: *mut c_char, t: *const c_char, p: *mut *mut c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:550:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 550 | pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 550 | pub fn strxfrm(s: *mut c_schar, ct: *const c_char, n: size_t) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:550:47 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 550 | pub fn strxfrm(s: *mut c_char, ct: *const c_char, n: size_t) -> size_t; | ^^^^^^ | help: a type alias with a similar name exists | 550 | pub fn strxfrm(s: *mut c_char, ct: *const c_schar, n: size_t) -> size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:551:42 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 551 | pub fn strsignal(sig: c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 551 | pub fn strsignal(sig: c_int) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:552:31 | 552 | pub fn wcslen(buf: *const wchar_t) -> size_t; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:553:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 553 | pub fn wcstombs(dest: *mut c_char, src: *const wchar_t, n: size_t) -> ::size_t; | ^^^^^^ | help: a type alias with a similar name exists | 553 | pub fn wcstombs(dest: *mut c_schar, src: *const wchar_t, n: size_t) -> ::size_t; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:553:52 | 553 | pub fn wcstombs(dest: *mut c_char, src: *const wchar_t, n: size_t) -> ::size_t; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:556:31 | 556 | pub fn wmemchr(cx: *const wchar_t, c: wchar_t, n: size_t) -> *mut wchar_t; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:556:43 | 556 | pub fn wmemchr(cx: *const wchar_t, c: wchar_t, n: size_t) -> *mut wchar_t; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:556:71 | 556 | pub fn wmemchr(cx: *const wchar_t, c: wchar_t, n: size_t) -> *mut wchar_t; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:565:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 565 | pub fn getpwnam(name: *const ::c_char) -> *mut passwd; | ^^^^^^ | help: a type alias with a similar name exists | 565 | pub fn getpwnam(name: *const ::c_schar) -> *mut passwd; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 565 - pub fn getpwnam(name: *const ::c_char) -> *mut passwd; 565 + pub fn getpwnam(name: *const c_char) -> *mut passwd; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:569:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 569 | pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 569 | pub fn fprintf(stream: *mut ::FILE, format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 569 - pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int; 569 + pub fn fprintf(stream: *mut ::FILE, format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:570:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 570 | pub fn printf(format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 570 | pub fn printf(format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 570 - pub fn printf(format: *const ::c_char, ...) -> ::c_int; 570 + pub fn printf(format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:571:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 571 | pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 571 | pub fn snprintf(s: *mut ::c_schar, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 571 - pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; 571 + pub fn snprintf(s: *mut c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:571:69 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 571 | pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 571 | pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 571 - pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int; 571 + pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:572:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 572 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 572 | pub fn sprintf(s: *mut ::c_schar, format: *const ::c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 572 - pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int; 572 + pub fn sprintf(s: *mut c_char, format: *const ::c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:572:55 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 572 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 572 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 572 - pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int; 572 + pub fn sprintf(s: *mut ::c_char, format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:577:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 577 | pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 577 | pub fn fscanf(stream: *mut ::FILE, format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 577 - pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int; 577 + pub fn fscanf(stream: *mut ::FILE, format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:582:35 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 582 | pub fn scanf(format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 582 | pub fn scanf(format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 582 - pub fn scanf(format: *const ::c_char, ...) -> ::c_int; 582 + pub fn scanf(format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:587:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 587 | pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 587 | pub fn sscanf(s: *const ::c_schar, format: *const ::c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 587 - pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int; 587 + pub fn sscanf(s: *const c_char, format: *const ::c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:587:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 587 | pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 587 | pub fn sscanf(s: *const ::c_char, format: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 587 - pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int; 587 + pub fn sscanf(s: *const ::c_char, format: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:704:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 704 | pub fn chmod(path: *const c_char, mode: mode_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 704 | pub fn chmod(path: *const c_schar, mode: mode_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0573]: expected type, found function `stat` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:720:45 | 720 | pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int; | ^^^^ not a type error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:722:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 722 | pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 722 | pub fn mkdir(path: *const c_schar, mode: mode_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:733:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 733 | pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 733 | pub fn stat(path: *const c_schar, buf: *mut stat) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0573]: expected type, found function `stat` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:733:48 | 733 | pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int; | ^^^^ not a type error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:740:45 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 740 | pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE; | ^^^^^^ | help: a type alias with a similar name exists | 740 | pub fn fdopen(fd: ::c_int, mode: *const c_schar) -> *mut ::FILE; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:747:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 747 | pub fn open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 747 | pub fn open(path: *const c_schar, oflag: ::c_int, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:752:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 752 | pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 752 | pub fn creat(path: *const c_schar, mode: mode_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:768:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 768 | pub fn opendir(dirname: *const c_char) -> *mut ::DIR; | ^^^^^^ | help: a type alias with a similar name exists | 768 | pub fn opendir(dirname: *const c_schar) -> *mut ::DIR; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:797:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 797 | pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 797 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 797 - pathname: *const ::c_char, 797 + pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:804:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 804 | pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 804 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 804 - pathname: *const ::c_char, 804 + pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:819:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 819 | pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 819 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 819 - pathname: *const ::c_char, 819 + pathname: *const c_char, | error[E0573]: expected type, found function `stat` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:820:19 | 820 | buf: *mut stat, | ^^^^ not a type error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:825:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 825 | oldpath: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 825 | oldpath: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 825 - oldpath: *const ::c_char, 825 + oldpath: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:827:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 827 | newpath: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 827 | newpath: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 827 - newpath: *const ::c_char, 827 + newpath: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:832:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 832 | oldpath: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 832 | oldpath: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 832 - oldpath: *const ::c_char, 832 + oldpath: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:834:27 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 834 | newpath: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 834 | newpath: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 834 - newpath: *const ::c_char, 834 + newpath: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:837:26 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 837 | target: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 837 | target: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 837 - target: *const ::c_char, 837 + target: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:839:28 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 839 | linkpath: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 839 | linkpath: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 839 - linkpath: *const ::c_char, 839 + linkpath: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:841:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 841 | pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 841 | pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_schar, flags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 841 - pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int; 841 + pub fn unlinkat(dirfd: ::c_int, pathname: *const c_char, flags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:843:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 843 | pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 843 | pub fn access(path: *const c_schar, amode: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:845:30 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 845 | pub fn chdir(dir: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 845 | pub fn chdir(dir: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:847:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 847 | pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 847 | pub fn chown(path: *const c_schar, uid: uid_t, gid: gid_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:852:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 852 | pub fn lchown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 852 | pub fn lchown(path: *const c_schar, uid: uid_t, gid: gid_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:864:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 864 | pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 864 | pub fn execl(path: *const c_schar, arg0: *const c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:864:52 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 864 | pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 864 | pub fn execl(path: *const c_char, arg0: *const c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:865:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 865 | pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 865 | pub fn execle(path: *const ::c_schar, arg0: *const ::c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 865 - pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; 865 + pub fn execle(path: *const c_char, arg0: *const ::c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:865:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 865 | pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 865 | pub fn execle(path: *const ::c_char, arg0: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 865 - pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; 865 + pub fn execle(path: *const ::c_char, arg0: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:866:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 866 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 866 | pub fn execlp(file: *const ::c_schar, arg0: *const ::c_char, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 866 - pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; 866 + pub fn execlp(file: *const c_char, arg0: *const ::c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:866:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 866 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 866 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_schar, ...) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 866 - pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int; 866 + pub fn execlp(file: *const ::c_char, arg0: *const c_char, ...) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:867:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 867 | pub fn execv(prog: *const c_char, argv: *const *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 867 | pub fn execv(prog: *const c_schar, argv: *const *const c_char) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:867:59 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 867 | pub fn execv(prog: *const c_char, argv: *const *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 867 | pub fn execv(prog: *const c_char, argv: *const *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:869:22 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 869 | prog: *const c_char, | ^^^^^^ | help: a type alias with a similar name exists | 869 | prog: *const c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:870:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 870 | argv: *const *const c_char, | ^^^^^^ | help: a type alias with a similar name exists | 870 | argv: *const *const c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:871:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 871 | envp: *const *const c_char, | ^^^^^^ | help: a type alias with a similar name exists | 871 | envp: *const *const c_schar, | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:873:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 873 | pub fn execvp(c: *const c_char, argv: *const *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 873 | pub fn execvp(c: *const c_schar, argv: *const *const c_char) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:873:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 873 | pub fn execvp(c: *const c_char, argv: *const *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 873 | pub fn execvp(c: *const c_char, argv: *const *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:875:58 | 875 | pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:876:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 876 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 876 | pub fn getcwd(buf: *mut c_schar, size: ::size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:876:61 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 876 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 876 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:882:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 882 | pub fn getlogin() -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 882 | pub fn getlogin() -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:887:52 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 887 | pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 887 | pub fn getopt(argc: ::c_int, argv: *const *mut c_schar, optstr: *const c_char) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:887:75 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 887 | pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 887 | pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:894:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 894 | pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 894 | pub fn link(src: *const c_schar, dst: *const c_char) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:894:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 894 | pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 894 | pub fn link(src: *const c_char, dst: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:896:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 896 | pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long; | ^^^^^^ | help: a type alias with a similar name exists | 896 | pub fn pathconf(path: *const c_schar, name: ::c_int) -> c_long; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:896:60 | 896 | pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1553+ use ffi::c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:904:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 904 | pub fn rmdir(path: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 904 | pub fn rmdir(path: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:926:41 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 926 | pub fn ttyname(fd: ::c_int) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 926 | pub fn ttyname(fd: ::c_int) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:932:45 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 932 | pub fn ttyname_r(fd: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 932 | pub fn ttyname_r(fd: ::c_int, buf: *mut c_schar, buflen: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:933:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 933 | pub fn unlink(c: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 933 | pub fn unlink(c: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:962:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 962 | pub fn utime(file: *const c_char, buf: *const utimbuf) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 962 | pub fn utime(file: *const c_schar, buf: *const utimbuf) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:998:42 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 998 | pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint; | ^^^^^^ | help: a type alias with a similar name exists | 998 | pub fn if_nametoindex(ifname: *const c_schar) -> ::c_uint; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:999:61 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 999 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 999 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 999 - pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char; 999 + pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:999:79 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 999 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 999 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 999 - pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char; 999 + pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1010:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1010 | pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1010 | pub fn lstat(path: *const c_schar, buf: *mut stat) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0573]: expected type, found function `stat` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1010:49 | 1010 | pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int; | ^^^^ not a type error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1022:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1022 | pub fn setenv(name: *const c_char, val: *const c_char, overwrite: ::c_int) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1022 | pub fn setenv(name: *const c_schar, val: *const c_char, overwrite: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1022:52 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1022 | pub fn setenv(name: *const c_char, val: *const c_char, overwrite: ::c_int) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1022 | pub fn setenv(name: *const c_char, val: *const c_schar, overwrite: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1028:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1028 | pub fn unsetenv(name: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1028 | pub fn unsetenv(name: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1030:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1030 | pub fn symlink(path1: *const c_char, path2: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1030 | pub fn symlink(path1: *const c_schar, path2: *const c_char) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1030:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1030 | pub fn symlink(path1: *const c_char, path2: *const c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1030 | pub fn symlink(path1: *const c_char, path2: *const c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1032:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1032 | pub fn truncate(path: *const c_char, length: off_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1032 | pub fn truncate(path: *const c_schar, length: off_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1049:40 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1049 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1049 | pub fn realpath(pathname: *const ::c_schar, resolved: *mut ::c_char) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1049 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; 1049 + pub fn realpath(pathname: *const c_char, resolved: *mut ::c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1049:65 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1049 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1049 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1049 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; 1049 + pub fn realpath(pathname: *const ::c_char, resolved: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1049:83 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1049 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1049 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1049 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char; 1049 + pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1063:43 | 1063 | pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1064:46 | 1064 | pub fn pthread_attr_destroy(attr: *mut ::pthread_attr_t) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1066:24 | 1066 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1069:51 | 1069 | pub fn pthread_attr_setstacksize(attr: *mut ::pthread_attr_t, stack_size: ::size_t) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1070:53 | 1070 | pub fn pthread_attr_setdetachstate(attr: *mut ::pthread_attr_t, state: ::c_int) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1176:38 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1176 | pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1176 | pub fn utimes(filename: *const ::c_schar, times: *const ::timeval) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1176 - pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int; 1176 + pub fn utimes(filename: *const c_char, times: *const ::timeval) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1177:38 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1177 | pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void; | ^^^^^^ | help: a type alias with a similar name exists | 1177 | pub fn dlopen(filename: *const ::c_schar, flag: ::c_int) -> *mut ::c_void; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1177 - pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void; 1177 + pub fn dlopen(filename: *const c_char, flag: ::c_int) -> *mut ::c_void; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1178:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1178 | pub fn dlerror() -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1178 | pub fn dlerror() -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1178 - pub fn dlerror() -> *mut ::c_char; 1178 + pub fn dlerror() -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1179:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1179 | pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void; | ^^^^^^ | help: a type alias with a similar name exists | 1179 | pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_schar) -> *mut ::c_void; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1179 - pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void; 1179 + pub fn dlsym(handle: *mut ::c_void, symbol: *const c_char) -> *mut ::c_void; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1190:22 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1190 | node: *const c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1190 | node: *const c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1191:25 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1191 | service: *const c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1191 | service: *const c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1202:52 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1202 | pub fn hstrerror(errcode: ::c_int) -> *const ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1202 | pub fn hstrerror(errcode: ::c_int) -> *const ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1202 - pub fn hstrerror(errcode: ::c_int) -> *const ::c_char; 1202 + pub fn hstrerror(errcode: ::c_int) -> *const c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1203:55 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1203 | pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1203 | pub fn gai_strerror(errcode: ::c_int) -> *const ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1203 - pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char; 1203 + pub fn gai_strerror(errcode: ::c_int) -> *const c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1269:37 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1269 | pub fn mknod(pathname: *const ::c_char, mode: ::mode_t, dev: ::dev_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1269 | pub fn mknod(pathname: *const ::c_schar, mode: ::mode_t, dev: ::dev_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1269 - pub fn mknod(pathname: *const ::c_char, mode: ::mode_t, dev: ::dev_t) -> ::c_int; 1269 + pub fn mknod(pathname: *const c_char, mode: ::mode_t, dev: ::dev_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1270:37 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1270 | pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1270 | pub fn gethostname(name: *mut ::c_schar, len: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1270 - pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int; 1270 + pub fn gethostname(name: *mut c_char, len: ::size_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1272:41 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1272 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent; | ^^^^^^ | help: a type alias with a similar name exists | 1272 | pub fn getservbyname(name: *const ::c_schar, proto: *const ::c_char) -> *mut servent; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1272 - pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent; 1272 + pub fn getservbyname(name: *const c_char, proto: *const ::c_char) -> *mut servent; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1272:65 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1272 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent; | ^^^^^^ | help: a type alias with a similar name exists | 1272 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_schar) -> *mut servent; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1272 - pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent; 1272 + pub fn getservbyname(name: *const ::c_char, proto: *const c_char) -> *mut servent; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1273:57 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1273 | pub fn getservbyport(port: ::c_int, proto: *const ::c_char) -> *mut servent; | ^^^^^^ | help: a type alias with a similar name exists | 1273 | pub fn getservbyport(port: ::c_int, proto: *const ::c_schar) -> *mut servent; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1273 - pub fn getservbyport(port: ::c_int, proto: *const ::c_char) -> *mut servent; 1273 + pub fn getservbyport(port: ::c_int, proto: *const c_char) -> *mut servent; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1276:42 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1276 | pub fn getprotobyname(name: *const ::c_char) -> *mut protoent; | ^^^^^^ | help: a type alias with a similar name exists | 1276 | pub fn getprotobyname(name: *const ::c_schar) -> *mut protoent; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1276 - pub fn getprotobyname(name: *const ::c_char) -> *mut protoent; 1276 + pub fn getprotobyname(name: *const c_char) -> *mut protoent; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1278:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1278 | pub fn chroot(name: *const ::c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1278 | pub fn chroot(name: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1278 - pub fn chroot(name: *const ::c_char) -> ::c_int; 1278 + pub fn chroot(name: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1301:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1301 | pub fn putenv(string: *mut c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1301 | pub fn putenv(string: *mut c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1324:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1324 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1324 | pub fn setlocale(category: ::c_int, locale: *const ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1324 - pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char; 1324 + pub fn setlocale(category: ::c_int, locale: *const c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1324:76 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1324 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1324 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1324 - pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char; 1324 + pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut c_char; | error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1331:31 | 1331 | pub fn sem_wait(sem: *mut sem_t) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1332:34 | 1332 | pub fn sem_trywait(sem: *mut sem_t) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1333:31 | 1333 | pub fn sem_post(sem: *mut sem_t) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1334:33 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1334 | pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1334 | pub fn statvfs(path: *const c_schar, buf: *mut statvfs) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1338:34 | 1338 | pub fn sigemptyset(set: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1340:32 | 1340 | pub fn sigaddset(set: *mut sigset_t, signum: ::c_int) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1342:33 | 1342 | pub fn sigfillset(set: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1344:32 | 1344 | pub fn sigdelset(set: *mut sigset_t, signum: ::c_int) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1346:36 | 1346 | pub fn sigismember(set: *const sigset_t, signum: ::c_int) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1349:50 | 1349 | pub fn sigprocmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1349:73 | 1349 | pub fn sigprocmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1351:33 | 1351 | pub fn sigpending(set: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1353:40 | 1353 | pub fn sysconf(name: ::c_int) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1553 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1353 - pub fn sysconf(name: ::c_int) -> ::c_long; 1353 + pub fn sysconf(name: ::c_int) -> c_long; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1355:32 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1355 | pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1355 | pub fn mkfifo(path: *const c_schar, mode: mode_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1374:37 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1374 | pub fn mkstemp(template: *mut ::c_char) -> ::c_int; | ^^^^^^ | help: a type alias with a similar name exists | 1374 | pub fn mkstemp(template: *mut ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1374 - pub fn mkstemp(template: *mut ::c_char) -> ::c_int; 1374 + pub fn mkstemp(template: *mut c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1375:37 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1375 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1375 | pub fn mkdtemp(template: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1375 - pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char; 1375 + pub fn mkdtemp(template: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1375:55 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1375 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1375 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1375 - pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char; 1375 + pub fn mkdtemp(template: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1377:31 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1377 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1377 | pub fn tmpnam(ptr: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1377 - pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char; 1377 + pub fn tmpnam(ptr: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1377:49 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1377 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1377 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1377 - pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char; 1377 + pub fn tmpnam(ptr: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1379:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1379 | pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int); | ^^^^^^ | help: a type alias with a similar name exists | 1379 | pub fn openlog(ident: *const ::c_schar, logopt: ::c_int, facility: ::c_int); | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1379 - pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int); 1379 + pub fn openlog(ident: *const c_char, logopt: ::c_int, facility: ::c_int); | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1383:56 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1383 | pub fn syslog(priority: ::c_int, message: *const ::c_char, ...); | ^^^^^^ | help: a type alias with a similar name exists | 1383 | pub fn syslog(priority: ::c_int, message: *const ::c_schar, ...); | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1383 - pub fn syslog(priority: ::c_int, message: *const ::c_char, ...); 1383 + pub fn syslog(priority: ::c_int, message: *const c_char, ...); | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1392:43 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1392 | pub fn ptsname(fd: ::c_int) -> *mut ::c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1392 | pub fn ptsname(fd: ::c_int) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1392 - pub fn ptsname(fd: ::c_int) -> *mut ::c_char; 1392 + pub fn ptsname(fd: ::c_int) -> *mut c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1395:34 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1395 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1395 | pub fn strcasestr(cs: *const c_schar, ct: *const c_char) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1395:53 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1395 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1395 | pub fn strcasestr(cs: *const c_char, ct: *const c_schar) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1395:69 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1395 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1395 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1396:39 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1396 | pub fn getline(lineptr: *mut *mut c_char, n: *mut size_t, stream: *mut FILE) -> ssize_t; | ^^^^^^ | help: a type alias with a similar name exists | 1396 | pub fn getline(lineptr: *mut *mut c_schar, n: *mut size_t, stream: *mut FILE) -> ssize_t; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1409:38 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1409 | pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1409 | pub fn stpncpy(dst: *mut c_schar, src: *const c_char, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1409:58 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1409 | pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1409 | pub fn stpncpy(dst: *mut c_char, src: *const c_schar, n: size_t) -> *mut c_char; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1409:85 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1409 | pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_char; | ^^^^^^ | help: a type alias with a similar name exists | 1409 | pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_schar; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `wchar_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1426:32 | 1426 | ptr: *mut *mut wchar_t, | ^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1441:63 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1441 | pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1441 | pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1441 - pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char, 1441 + pub fn mkdirat(dirfd: ::c_int, pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1443:62 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1443 | pub fn openat(dirfd: ::c_int, pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1443 | pub fn openat(dirfd: ::c_int, pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1443 - pub fn openat(dirfd: ::c_int, pathname: *const ::c_char, 1443 + pub fn openat(dirfd: ::c_int, pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1497:36 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1497 | pathname: *const ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1497 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1497 - pathname: *const ::c_char, 1497 + pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1498:29 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1498 | buf: *mut ::c_char, | ^^^^^^ | help: a type alias with a similar name exists | 1498 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1498 - buf: *mut ::c_char, 1498 + buf: *mut c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1500:74 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1500 | pub fn fmemopen(buf: *mut c_void, size: size_t, mode: *const c_char) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 1500 | pub fn fmemopen(buf: *mut c_void, size: size_t, mode: *const c_schar) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1501:50 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1501 | pub fn open_memstream(ptr: *mut *mut c_char, sizeloc: *mut size_t) -> *mut FILE; | ^^^^^^ | help: a type alias with a similar name exists | 1501 | pub fn open_memstream(ptr: *mut *mut c_schar, sizeloc: *mut size_t) -> *mut FILE; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1509:42 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1509 | pub fn readlink(path: *const c_char, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a type alias with a similar name exists | 1509 | pub fn readlink(path: *const c_schar, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1509:60 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here ... 1509 | pub fn readlink(path: *const c_char, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a type alias with a similar name exists | 1509 | pub fn readlink(path: *const c_char, buf: *mut c_schar, bufsz: ::size_t) -> ::ssize_t; | ~~~~~~~ help: consider importing this type alias | 1553 + use ffi::c_char; | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:1525:33 | 1525 | sigmask: *const sigset_t, | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:38:25 | 38 | pub sa_data: [::c_char; 14], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 38 | pub sa_data: [::c_schar; 14], | ~~~~~~~ help: consider importing this type alias | 188+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 38 - pub sa_data: [::c_char; 14], 38 + pub sa_data: [c_char; 14], | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:69:32 | 69 | pub ai_canonname: *mut c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 69 | pub ai_canonname: *mut char, | ~~~~ help: consider importing this type alias | 188+ use ffi::c_char; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:88:22 | 88 | fds_bits: [::c_ulong; FD_SETSIZE / ULONG_SIZE], | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 188+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 88 - fds_bits: [::c_ulong; FD_SETSIZE / ULONG_SIZE], 88 + fds_bits: [c_ulong; FD_SETSIZE / ULONG_SIZE], | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:101:26 | 101 | pub tm_gmtoff: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 101 - pub tm_gmtoff: ::c_long, 101 + pub tm_gmtoff: c_long, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:102:31 | 102 | pub tm_zone: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 102 | pub tm_zone: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 102 - pub tm_zone: *const ::c_char, 102 + pub tm_zone: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:118:33 | 118 | pub dli_fname: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 118 | pub dli_fname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 118 - pub dli_fname: *const ::c_char, 118 + pub dli_fname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:120:33 | 120 | pub dli_sname: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 120 | pub dli_sname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 120 - pub dli_sname: *const ::c_char, 120 + pub dli_sname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:125:35 | 125 | pub decimal_point: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 125 | pub decimal_point: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 125 - pub decimal_point: *mut ::c_char, 125 + pub decimal_point: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:126:35 | 126 | pub thousands_sep: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 126 | pub thousands_sep: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 126 - pub thousands_sep: *mut ::c_char, 126 + pub thousands_sep: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:127:30 | 127 | pub grouping: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 127 | pub grouping: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 127 - pub grouping: *mut ::c_char, 127 + pub grouping: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:128:37 | 128 | pub int_curr_symbol: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 128 | pub int_curr_symbol: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 128 - pub int_curr_symbol: *mut ::c_char, 128 + pub int_curr_symbol: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:129:37 | 129 | pub currency_symbol: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 129 | pub currency_symbol: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 129 - pub currency_symbol: *mut ::c_char, 129 + pub currency_symbol: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:130:39 | 130 | pub mon_decimal_point: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 130 | pub mon_decimal_point: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 130 - pub mon_decimal_point: *mut ::c_char, 130 + pub mon_decimal_point: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:131:39 | 131 | pub mon_thousands_sep: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 131 | pub mon_thousands_sep: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 131 - pub mon_thousands_sep: *mut ::c_char, 131 + pub mon_thousands_sep: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:132:34 | 132 | pub mon_grouping: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 132 | pub mon_grouping: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 132 - pub mon_grouping: *mut ::c_char, 132 + pub mon_grouping: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:133:35 | 133 | pub positive_sign: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 133 | pub positive_sign: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 133 - pub positive_sign: *mut ::c_char, 133 + pub positive_sign: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:134:35 | 134 | pub negative_sign: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 134 | pub negative_sign: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 134 - pub negative_sign: *mut ::c_char, 134 + pub negative_sign: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:135:32 | 135 | pub int_frac_digits: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 135 | pub int_frac_digits: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 135 - pub int_frac_digits: ::c_char, 135 + pub int_frac_digits: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:136:28 | 136 | pub frac_digits: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 136 | pub frac_digits: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 136 - pub frac_digits: ::c_char, 136 + pub frac_digits: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:137:30 | 137 | pub p_cs_precedes: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 137 | pub p_cs_precedes: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 137 - pub p_cs_precedes: ::c_char, 137 + pub p_cs_precedes: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:138:31 | 138 | pub p_sep_by_space: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 138 | pub p_sep_by_space: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 138 - pub p_sep_by_space: ::c_char, 138 + pub p_sep_by_space: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:139:30 | 139 | pub n_cs_precedes: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 139 | pub n_cs_precedes: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 139 - pub n_cs_precedes: ::c_char, 139 + pub n_cs_precedes: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:140:31 | 140 | pub n_sep_by_space: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 140 | pub n_sep_by_space: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 140 - pub n_sep_by_space: ::c_char, 140 + pub n_sep_by_space: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:141:28 | 141 | pub p_sign_posn: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 141 | pub p_sign_posn: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 141 - pub p_sign_posn: ::c_char, 141 + pub p_sign_posn: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:142:28 | 142 | pub n_sign_posn: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 142 | pub n_sign_posn: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 142 - pub n_sign_posn: ::c_char, 142 + pub n_sign_posn: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:143:34 | 143 | pub int_p_cs_precedes: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 143 | pub int_p_cs_precedes: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 143 - pub int_p_cs_precedes: ::c_char, 143 + pub int_p_cs_precedes: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:144:35 | 144 | pub int_p_sep_by_space: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 144 | pub int_p_sep_by_space: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 144 - pub int_p_sep_by_space: ::c_char, 144 + pub int_p_sep_by_space: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:145:34 | 145 | pub int_n_cs_precedes: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 145 | pub int_n_cs_precedes: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 145 - pub int_n_cs_precedes: ::c_char, 145 + pub int_n_cs_precedes: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:146:35 | 146 | pub int_n_sep_by_space: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 146 | pub int_n_sep_by_space: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 146 - pub int_n_sep_by_space: ::c_char, 146 + pub int_n_sep_by_space: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:147:32 | 147 | pub int_p_sign_posn: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 147 | pub int_p_sign_posn: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 147 - pub int_p_sign_posn: ::c_char, 147 + pub int_p_sign_posn: c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:148:32 | 148 | pub int_n_sign_posn: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 148 | pub int_n_sign_posn: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 148 - pub int_n_sign_posn: ::c_char, 148 + pub int_n_sign_posn: c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:159:28 | 159 | pub ifa_name: *mut c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 159 | pub ifa_name: *mut char, | ~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:175:23 | 175 | rtmsg_info: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 175 - rtmsg_info: ::c_ulong, 175 + rtmsg_info: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:185:25 | 185 | pub arp_dev: [::c_char; 16], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 185 | pub arp_dev: [::c_schar; 16], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 185 - pub arp_dev: [::c_char; 16], 185 + pub arp_dev: [c_char; 16], | error[E0412]: cannot find type `msghdr` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:204:24 | 204 | pub msg_hdr: ::msghdr, | ^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:225:26 | 225 | pub sun_path: [::c_char; 108] | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 225 | pub sun_path: [::c_schar; 108] | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 225 - pub sun_path: [::c_char; 108] 225 + pub sun_path: [c_char; 108] | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:238:25 | 238 | pub sysname: [::c_char; 65], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 238 | pub sysname: [::c_schar; 65], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 238 - pub sysname: [::c_char; 65], 238 + pub sysname: [c_char; 65], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:239:26 | 239 | pub nodename: [::c_char; 65], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 239 | pub nodename: [::c_schar; 65], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 239 - pub nodename: [::c_char; 65], 239 + pub nodename: [c_char; 65], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:240:25 | 240 | pub release: [::c_char; 65], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 240 | pub release: [::c_schar; 65], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 240 - pub release: [::c_char; 65], 240 + pub release: [c_char; 65], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:241:25 | 241 | pub version: [::c_char; 65], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 241 | pub version: [::c_schar; 65], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 241 - pub version: [::c_char; 65], 241 + pub version: [c_char; 65], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:242:25 | 242 | pub machine: [::c_char; 65], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 242 | pub machine: [::c_schar; 65], | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 242 - pub machine: [::c_char; 65], 242 + pub machine: [c_char; 65], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:243:28 | 243 | pub domainname: [::c_char; 65] | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 243 | pub domainname: [::c_schar; 65] | ~~~~~~~ help: consider importing this type alias | 1889+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 243 - pub domainname: [::c_char; 65] 243 + pub domainname: [c_char; 65] | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:610:24 | 610 | pub const MS_RDONLY: ::c_ulong = 0x01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 610 - pub const MS_RDONLY: ::c_ulong = 0x01; 610 + pub const MS_RDONLY: c_ulong = 0x01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:611:24 | 611 | pub const MS_NOSUID: ::c_ulong = 0x02; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 611 - pub const MS_NOSUID: ::c_ulong = 0x02; 611 + pub const MS_NOSUID: c_ulong = 0x02; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:612:23 | 612 | pub const MS_NODEV: ::c_ulong = 0x04; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 612 - pub const MS_NODEV: ::c_ulong = 0x04; 612 + pub const MS_NODEV: c_ulong = 0x04; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:613:24 | 613 | pub const MS_NOEXEC: ::c_ulong = 0x08; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 613 - pub const MS_NOEXEC: ::c_ulong = 0x08; 613 + pub const MS_NOEXEC: c_ulong = 0x08; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:614:29 | 614 | pub const MS_SYNCHRONOUS: ::c_ulong = 0x10; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 614 - pub const MS_SYNCHRONOUS: ::c_ulong = 0x10; 614 + pub const MS_SYNCHRONOUS: c_ulong = 0x10; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:615:25 | 615 | pub const MS_REMOUNT: ::c_ulong = 0x20; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 615 - pub const MS_REMOUNT: ::c_ulong = 0x20; 615 + pub const MS_REMOUNT: c_ulong = 0x20; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:616:26 | 616 | pub const MS_MANDLOCK: ::c_ulong = 0x40; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 616 - pub const MS_MANDLOCK: ::c_ulong = 0x40; 616 + pub const MS_MANDLOCK: c_ulong = 0x40; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:617:25 | 617 | pub const MS_DIRSYNC: ::c_ulong = 0x80; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 617 - pub const MS_DIRSYNC: ::c_ulong = 0x80; 617 + pub const MS_DIRSYNC: c_ulong = 0x80; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:618:25 | 618 | pub const MS_NOATIME: ::c_ulong = 0x0400; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 618 - pub const MS_NOATIME: ::c_ulong = 0x0400; 618 + pub const MS_NOATIME: c_ulong = 0x0400; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:619:28 | 619 | pub const MS_NODIRATIME: ::c_ulong = 0x0800; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 619 - pub const MS_NODIRATIME: ::c_ulong = 0x0800; 619 + pub const MS_NODIRATIME: c_ulong = 0x0800; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:620:22 | 620 | pub const MS_BIND: ::c_ulong = 0x1000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 620 - pub const MS_BIND: ::c_ulong = 0x1000; 620 + pub const MS_BIND: c_ulong = 0x1000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:621:22 | 621 | pub const MS_MOVE: ::c_ulong = 0x2000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 621 - pub const MS_MOVE: ::c_ulong = 0x2000; 621 + pub const MS_MOVE: c_ulong = 0x2000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:622:21 | 622 | pub const MS_REC: ::c_ulong = 0x4000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 622 - pub const MS_REC: ::c_ulong = 0x4000; 622 + pub const MS_REC: c_ulong = 0x4000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:623:24 | 623 | pub const MS_SILENT: ::c_ulong = 0x8000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 623 - pub const MS_SILENT: ::c_ulong = 0x8000; 623 + pub const MS_SILENT: c_ulong = 0x8000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:624:26 | 624 | pub const MS_POSIXACL: ::c_ulong = 0x010000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 624 - pub const MS_POSIXACL: ::c_ulong = 0x010000; 624 + pub const MS_POSIXACL: c_ulong = 0x010000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:625:28 | 625 | pub const MS_UNBINDABLE: ::c_ulong = 0x020000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 625 - pub const MS_UNBINDABLE: ::c_ulong = 0x020000; 625 + pub const MS_UNBINDABLE: c_ulong = 0x020000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:626:25 | 626 | pub const MS_PRIVATE: ::c_ulong = 0x040000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 626 - pub const MS_PRIVATE: ::c_ulong = 0x040000; 626 + pub const MS_PRIVATE: c_ulong = 0x040000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:627:23 | 627 | pub const MS_SLAVE: ::c_ulong = 0x080000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 627 - pub const MS_SLAVE: ::c_ulong = 0x080000; 627 + pub const MS_SLAVE: c_ulong = 0x080000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:628:24 | 628 | pub const MS_SHARED: ::c_ulong = 0x100000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 628 - pub const MS_SHARED: ::c_ulong = 0x100000; 628 + pub const MS_SHARED: c_ulong = 0x100000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:629:26 | 629 | pub const MS_RELATIME: ::c_ulong = 0x200000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 629 - pub const MS_RELATIME: ::c_ulong = 0x200000; 629 + pub const MS_RELATIME: c_ulong = 0x200000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:630:27 | 630 | pub const MS_KERNMOUNT: ::c_ulong = 0x400000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 630 - pub const MS_KERNMOUNT: ::c_ulong = 0x400000; 630 + pub const MS_KERNMOUNT: c_ulong = 0x400000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:631:27 | 631 | pub const MS_I_VERSION: ::c_ulong = 0x800000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 631 - pub const MS_I_VERSION: ::c_ulong = 0x800000; 631 + pub const MS_I_VERSION: c_ulong = 0x800000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:632:29 | 632 | pub const MS_STRICTATIME: ::c_ulong = 0x1000000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 632 - pub const MS_STRICTATIME: ::c_ulong = 0x1000000; 632 + pub const MS_STRICTATIME: c_ulong = 0x1000000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:633:26 | 633 | pub const MS_LAZYTIME: ::c_ulong = 0x2000000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 633 - pub const MS_LAZYTIME: ::c_ulong = 0x2000000; 633 + pub const MS_LAZYTIME: c_ulong = 0x2000000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:634:24 | 634 | pub const MS_ACTIVE: ::c_ulong = 0x40000000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 634 - pub const MS_ACTIVE: ::c_ulong = 0x40000000; 634 + pub const MS_ACTIVE: c_ulong = 0x40000000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:635:25 | 635 | pub const MS_MGC_VAL: ::c_ulong = 0xc0ed0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 635 - pub const MS_MGC_VAL: ::c_ulong = 0xc0ed0000; 635 + pub const MS_MGC_VAL: c_ulong = 0xc0ed0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:636:25 | 636 | pub const MS_MGC_MSK: ::c_ulong = 0xffff0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1889+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 636 - pub const MS_MGC_MSK: ::c_ulong = 0xffff0000; 636 + pub const MS_MGC_MSK: c_ulong = 0xffff0000; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1282:23 | 1282 | pub const UTIME_OMIT: c_long = 1073741822; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1889 + use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1283:22 | 1283 | pub const UTIME_NOW: c_long = 1073741823; | ^^^^^^ not found in this scope | help: consider importing this type alias | 1889 + use ffi::c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1424:39 | 1424 | pub const ADFS_SUPER_MAGIC: ::c_long = 0x0000adf5; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1424 - pub const ADFS_SUPER_MAGIC: ::c_long = 0x0000adf5; 1424 + pub const ADFS_SUPER_MAGIC: c_long = 0x0000adf5; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1425:39 | 1425 | pub const AFFS_SUPER_MAGIC: ::c_long = 0x0000adff; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1425 - pub const AFFS_SUPER_MAGIC: ::c_long = 0x0000adff; 1425 + pub const AFFS_SUPER_MAGIC: c_long = 0x0000adff; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1426:38 | 1426 | pub const AFS_SUPER_MAGIC: ::c_long = 0x5346414f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1426 - pub const AFS_SUPER_MAGIC: ::c_long = 0x5346414f; 1426 + pub const AFS_SUPER_MAGIC: c_long = 0x5346414f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1427:41 | 1427 | pub const AUTOFS_SUPER_MAGIC: ::c_long = 0x0187; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1427 - pub const AUTOFS_SUPER_MAGIC: ::c_long = 0x0187; 1427 + pub const AUTOFS_SUPER_MAGIC: c_long = 0x0187; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1428:35 | 1428 | pub const BPF_FS_MAGIC: ::c_long = 0xcafe4a11; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1428 - pub const BPF_FS_MAGIC: ::c_long = 0xcafe4a11; 1428 + pub const BPF_FS_MAGIC: c_long = 0xcafe4a11; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1429:40 | 1429 | pub const BTRFS_SUPER_MAGIC: ::c_long = 0x9123683e; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1429 - pub const BTRFS_SUPER_MAGIC: ::c_long = 0x9123683e; 1429 + pub const BTRFS_SUPER_MAGIC: c_long = 0x9123683e; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1430:42 | 1430 | pub const CGROUP2_SUPER_MAGIC: ::c_long = 0x63677270; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1430 - pub const CGROUP2_SUPER_MAGIC: ::c_long = 0x63677270; 1430 + pub const CGROUP2_SUPER_MAGIC: c_long = 0x63677270; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1431:41 | 1431 | pub const CGROUP_SUPER_MAGIC: ::c_long = 0x27e0eb; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1431 - pub const CGROUP_SUPER_MAGIC: ::c_long = 0x27e0eb; 1431 + pub const CGROUP_SUPER_MAGIC: c_long = 0x27e0eb; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1432:39 | 1432 | pub const CODA_SUPER_MAGIC: ::c_long = 0x73757245; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1432 - pub const CODA_SUPER_MAGIC: ::c_long = 0x73757245; 1432 + pub const CODA_SUPER_MAGIC: c_long = 0x73757245; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1433:35 | 1433 | pub const CRAMFS_MAGIC: ::c_long = 0x28cd3d45; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1433 - pub const CRAMFS_MAGIC: ::c_long = 0x28cd3d45; 1433 + pub const CRAMFS_MAGIC: c_long = 0x28cd3d45; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1434:36 | 1434 | pub const DEBUGFS_MAGIC: ::c_long = 0x64626720; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1434 - pub const DEBUGFS_MAGIC: ::c_long = 0x64626720; 1434 + pub const DEBUGFS_MAGIC: c_long = 0x64626720; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1435:41 | 1435 | pub const DEVPTS_SUPER_MAGIC: ::c_long = 0x1cd1; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1435 - pub const DEVPTS_SUPER_MAGIC: ::c_long = 0x1cd1; 1435 + pub const DEVPTS_SUPER_MAGIC: c_long = 0x1cd1; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1436:43 | 1436 | pub const ECRYPTFS_SUPER_MAGIC: ::c_long = 0xf15f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1436 - pub const ECRYPTFS_SUPER_MAGIC: ::c_long = 0xf15f; 1436 + pub const ECRYPTFS_SUPER_MAGIC: c_long = 0xf15f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1437:38 | 1437 | pub const EFS_SUPER_MAGIC: ::c_long = 0x00414a53; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1437 - pub const EFS_SUPER_MAGIC: ::c_long = 0x00414a53; 1437 + pub const EFS_SUPER_MAGIC: c_long = 0x00414a53; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1438:39 | 1438 | pub const EXT2_SUPER_MAGIC: ::c_long = 0x0000ef53; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1438 - pub const EXT2_SUPER_MAGIC: ::c_long = 0x0000ef53; 1438 + pub const EXT2_SUPER_MAGIC: c_long = 0x0000ef53; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1439:39 | 1439 | pub const EXT3_SUPER_MAGIC: ::c_long = 0x0000ef53; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1439 - pub const EXT3_SUPER_MAGIC: ::c_long = 0x0000ef53; 1439 + pub const EXT3_SUPER_MAGIC: c_long = 0x0000ef53; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1440:39 | 1440 | pub const EXT4_SUPER_MAGIC: ::c_long = 0x0000ef53; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1440 - pub const EXT4_SUPER_MAGIC: ::c_long = 0x0000ef53; 1440 + pub const EXT4_SUPER_MAGIC: c_long = 0x0000ef53; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1441:39 | 1441 | pub const F2FS_SUPER_MAGIC: ::c_long = 0xf2f52010; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1441 - pub const F2FS_SUPER_MAGIC: ::c_long = 0xf2f52010; 1441 + pub const F2FS_SUPER_MAGIC: c_long = 0xf2f52010; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1442:39 | 1442 | pub const FUSE_SUPER_MAGIC: ::c_long = 0x65735546; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1442 - pub const FUSE_SUPER_MAGIC: ::c_long = 0x65735546; 1442 + pub const FUSE_SUPER_MAGIC: c_long = 0x65735546; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1443:42 | 1443 | pub const FUTEXFS_SUPER_MAGIC: ::c_long = 0xbad1dea; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1443 - pub const FUTEXFS_SUPER_MAGIC: ::c_long = 0xbad1dea; 1443 + pub const FUTEXFS_SUPER_MAGIC: c_long = 0xbad1dea; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1444:41 | 1444 | pub const HOSTFS_SUPER_MAGIC: ::c_long = 0x00c0ffee; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1444 - pub const HOSTFS_SUPER_MAGIC: ::c_long = 0x00c0ffee; 1444 + pub const HOSTFS_SUPER_MAGIC: c_long = 0x00c0ffee; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1445:39 | 1445 | pub const HPFS_SUPER_MAGIC: ::c_long = 0xf995e849; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1445 - pub const HPFS_SUPER_MAGIC: ::c_long = 0xf995e849; 1445 + pub const HPFS_SUPER_MAGIC: c_long = 0xf995e849; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1446:38 | 1446 | pub const HUGETLBFS_MAGIC: ::c_long = 0x958458f6; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1446 - pub const HUGETLBFS_MAGIC: ::c_long = 0x958458f6; 1446 + pub const HUGETLBFS_MAGIC: c_long = 0x958458f6; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1447:40 | 1447 | pub const ISOFS_SUPER_MAGIC: ::c_long = 0x00009660; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1447 - pub const ISOFS_SUPER_MAGIC: ::c_long = 0x00009660; 1447 + pub const ISOFS_SUPER_MAGIC: c_long = 0x00009660; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1448:40 | 1448 | pub const JFFS2_SUPER_MAGIC: ::c_long = 0x000072b6; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1448 - pub const JFFS2_SUPER_MAGIC: ::c_long = 0x000072b6; 1448 + pub const JFFS2_SUPER_MAGIC: c_long = 0x000072b6; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1449:42 | 1449 | pub const MINIX2_SUPER_MAGIC2: ::c_long = 0x00002478; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1449 - pub const MINIX2_SUPER_MAGIC2: ::c_long = 0x00002478; 1449 + pub const MINIX2_SUPER_MAGIC2: c_long = 0x00002478; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1450:41 | 1450 | pub const MINIX2_SUPER_MAGIC: ::c_long = 0x00002468; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1450 - pub const MINIX2_SUPER_MAGIC: ::c_long = 0x00002468; 1450 + pub const MINIX2_SUPER_MAGIC: c_long = 0x00002468; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1451:41 | 1451 | pub const MINIX3_SUPER_MAGIC: ::c_long = 0x4d5a; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1451 - pub const MINIX3_SUPER_MAGIC: ::c_long = 0x4d5a; 1451 + pub const MINIX3_SUPER_MAGIC: c_long = 0x4d5a; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1452:41 | 1452 | pub const MINIX_SUPER_MAGIC2: ::c_long = 0x0000138f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1452 - pub const MINIX_SUPER_MAGIC2: ::c_long = 0x0000138f; 1452 + pub const MINIX_SUPER_MAGIC2: c_long = 0x0000138f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1453:40 | 1453 | pub const MINIX_SUPER_MAGIC: ::c_long = 0x0000137f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1453 - pub const MINIX_SUPER_MAGIC: ::c_long = 0x0000137f; 1453 + pub const MINIX_SUPER_MAGIC: c_long = 0x0000137f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1454:40 | 1454 | pub const MSDOS_SUPER_MAGIC: ::c_long = 0x00004d44; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1454 - pub const MSDOS_SUPER_MAGIC: ::c_long = 0x00004d44; 1454 + pub const MSDOS_SUPER_MAGIC: c_long = 0x00004d44; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1455:38 | 1455 | pub const NCP_SUPER_MAGIC: ::c_long = 0x0000564c; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1455 - pub const NCP_SUPER_MAGIC: ::c_long = 0x0000564c; 1455 + pub const NCP_SUPER_MAGIC: c_long = 0x0000564c; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1456:38 | 1456 | pub const NFS_SUPER_MAGIC: ::c_long = 0x00006969; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1456 - pub const NFS_SUPER_MAGIC: ::c_long = 0x00006969; 1456 + pub const NFS_SUPER_MAGIC: c_long = 0x00006969; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1457:40 | 1457 | pub const NILFS_SUPER_MAGIC: ::c_long = 0x3434; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1457 - pub const NILFS_SUPER_MAGIC: ::c_long = 0x3434; 1457 + pub const NILFS_SUPER_MAGIC: c_long = 0x3434; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1458:40 | 1458 | pub const OCFS2_SUPER_MAGIC: ::c_long = 0x7461636f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1458 - pub const OCFS2_SUPER_MAGIC: ::c_long = 0x7461636f; 1458 + pub const OCFS2_SUPER_MAGIC: c_long = 0x7461636f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1459:43 | 1459 | pub const OPENPROM_SUPER_MAGIC: ::c_long = 0x00009fa1; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1459 - pub const OPENPROM_SUPER_MAGIC: ::c_long = 0x00009fa1; 1459 + pub const OPENPROM_SUPER_MAGIC: c_long = 0x00009fa1; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1460:44 | 1460 | pub const OVERLAYFS_SUPER_MAGIC: ::c_long = 0x794c7630; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1460 - pub const OVERLAYFS_SUPER_MAGIC: ::c_long = 0x794c7630; 1460 + pub const OVERLAYFS_SUPER_MAGIC: c_long = 0x794c7630; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1461:39 | 1461 | pub const PROC_SUPER_MAGIC: ::c_long = 0x00009fa0; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1461 - pub const PROC_SUPER_MAGIC: ::c_long = 0x00009fa0; 1461 + pub const PROC_SUPER_MAGIC: c_long = 0x00009fa0; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1462:39 | 1462 | pub const QNX4_SUPER_MAGIC: ::c_long = 0x0000002f; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1462 - pub const QNX4_SUPER_MAGIC: ::c_long = 0x0000002f; 1462 + pub const QNX4_SUPER_MAGIC: c_long = 0x0000002f; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1463:39 | 1463 | pub const QNX6_SUPER_MAGIC: ::c_long = 0x68191122; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1463 - pub const QNX6_SUPER_MAGIC: ::c_long = 0x68191122; 1463 + pub const QNX6_SUPER_MAGIC: c_long = 0x68191122; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1464:43 | 1464 | pub const RDTGROUP_SUPER_MAGIC: ::c_long = 0x7655821; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1464 - pub const RDTGROUP_SUPER_MAGIC: ::c_long = 0x7655821; 1464 + pub const RDTGROUP_SUPER_MAGIC: c_long = 0x7655821; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1465:43 | 1465 | pub const REISERFS_SUPER_MAGIC: ::c_long = 0x52654973; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1465 - pub const REISERFS_SUPER_MAGIC: ::c_long = 0x52654973; 1465 + pub const REISERFS_SUPER_MAGIC: c_long = 0x52654973; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1466:39 | 1466 | pub const SECURITYFS_MAGIC: ::c_long = 0x73636673; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1466 - pub const SECURITYFS_MAGIC: ::c_long = 0x73636673; 1466 + pub const SECURITYFS_MAGIC: c_long = 0x73636673; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1467:36 | 1467 | pub const SELINUX_MAGIC: ::c_long = 0xf97cff8c; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1467 - pub const SELINUX_MAGIC: ::c_long = 0xf97cff8c; 1467 + pub const SELINUX_MAGIC: c_long = 0xf97cff8c; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1468:34 | 1468 | pub const SMACK_MAGIC: ::c_long = 0x43415d53; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1468 - pub const SMACK_MAGIC: ::c_long = 0x43415d53; 1468 + pub const SMACK_MAGIC: c_long = 0x43415d53; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1469:38 | 1469 | pub const SMB_SUPER_MAGIC: ::c_long = 0x0000517b; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1469 - pub const SMB_SUPER_MAGIC: ::c_long = 0x0000517b; 1469 + pub const SMB_SUPER_MAGIC: c_long = 0x0000517b; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1470:34 | 1470 | pub const SYSFS_MAGIC: ::c_long = 0x62656572; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1470 - pub const SYSFS_MAGIC: ::c_long = 0x62656572; 1470 + pub const SYSFS_MAGIC: c_long = 0x62656572; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1471:34 | 1471 | pub const TMPFS_MAGIC: ::c_long = 0x01021994; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1471 - pub const TMPFS_MAGIC: ::c_long = 0x01021994; 1471 + pub const TMPFS_MAGIC: c_long = 0x01021994; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1472:36 | 1472 | pub const TRACEFS_MAGIC: ::c_long = 0x74726163; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1472 - pub const TRACEFS_MAGIC: ::c_long = 0x74726163; 1472 + pub const TRACEFS_MAGIC: c_long = 0x74726163; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1473:38 | 1473 | pub const UDF_SUPER_MAGIC: ::c_long = 0x15013346; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1473 - pub const UDF_SUPER_MAGIC: ::c_long = 0x15013346; 1473 + pub const UDF_SUPER_MAGIC: c_long = 0x15013346; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1474:44 | 1474 | pub const USBDEVICE_SUPER_MAGIC: ::c_long = 0x00009fa2; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1474 - pub const USBDEVICE_SUPER_MAGIC: ::c_long = 0x00009fa2; 1474 + pub const USBDEVICE_SUPER_MAGIC: c_long = 0x00009fa2; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1475:40 | 1475 | pub const XENFS_SUPER_MAGIC: ::c_long = 0xabba1974; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1475 - pub const XENFS_SUPER_MAGIC: ::c_long = 0xabba1974; 1475 + pub const XENFS_SUPER_MAGIC: c_long = 0xabba1974; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1476:33 | 1476 | pub const NSFS_MAGIC: ::c_long = 0x6e736673; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 1889 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 1476 - pub const NSFS_MAGIC: ::c_long = 0x6e736673; 1476 + pub const NSFS_MAGIC: c_long = 0x6e736673; | error[E0412]: cannot find type `msghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1541:39 | 1541 | pub fn CMSG_FIRSTHDR(mhdr: *const msghdr) -> *mut cmsghdr { | ^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1541:55 | 1541 | pub fn CMSG_FIRSTHDR(mhdr: *const msghdr) -> *mut cmsghdr { | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1542:64 | 1542 | if (*mhdr).msg_controllen as usize >= ::mem::size_of::() { | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1543:41 | 1543 | (*mhdr).msg_control as *mut cmsghdr | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1545:23 | 1545 | 0 as *mut cmsghdr | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1549:35 | 1549 | pub fn CMSG_DATA(cmsg: *const cmsghdr) -> *mut ::c_uchar { | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1554:68 | 1554 | (CMSG_ALIGN(length as usize) + CMSG_ALIGN(::mem::size_of::())) | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1559:37 | 1559 | CMSG_ALIGN(::mem::size_of::()) as ::c_uint + length | ^^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1673:34 | 1673 | pub fn sem_destroy(sem: *mut sem_t) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1674:31 | 1674 | pub fn sem_init(sem: *mut sem_t, pshared: ::c_int, value: ::c_uint) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1685:65 | 1685 | pub fn pthread_getattr_np(native: ::pthread_t, attr: *mut ::pthread_attr_t) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1687:24 | 1687 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1694:34 | 1694 | pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1694 | pub fn statfs(path: *const ::c_schar, buf: *mut statfs) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1694 - pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int; 1694 + pub fn statfs(path: *const c_char, buf: *mut statfs) -> ::c_int; | error[E0573]: expected type, found function `statfs` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1694:52 | 1694 | pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int; | ^^^^^^ help: a struct with a similar name exists: `statvfs` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `statvfs` defined here error[E0573]: expected type, found function `statfs` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1695:43 | 1695 | pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int; | ^^^^^^ help: a struct with a similar name exists: `statvfs` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `statvfs` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1701:24 | 1701 | path: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1701 | path: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1701 - path: *const ::c_char, 1701 + path: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1707:54 | 1707 | pub fn newlocale(mask: ::c_int, locale: *const ::c_char, base: ::locale_t) -> ::locale_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1707 | pub fn newlocale(mask: ::c_int, locale: *const ::c_schar, base: ::locale_t) -> ::locale_t; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1707 - pub fn newlocale(mask: ::c_int, locale: *const ::c_char, base: ::locale_t) -> ::locale_t; 1707 + pub fn newlocale(mask: ::c_int, locale: *const c_char, base: ::locale_t) -> ::locale_t; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1711:28 | 1711 | pathname: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1711 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1711 - pathname: *const ::c_char, 1711 + pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1733:47 | 1733 | pub fn ptsname_r(fd: ::c_int, buf: *mut ::c_char, buflen: ::size_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1733 | pub fn ptsname_r(fd: ::c_int, buf: *mut ::c_schar, buflen: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1733 - pub fn ptsname_r(fd: ::c_int, buf: *mut ::c_char, buflen: ::size_t) -> ::c_int; 1733 + pub fn ptsname_r(fd: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int; | error[E0412]: cannot find type `siginfo_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1735:61 | 1735 | pub fn waitid(idtype: idtype_t, id: id_t, infop: *mut ::siginfo_t, options: ::c_int) | ^^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1739:36 | 1739 | pub fn acct(filename: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1739 | pub fn acct(filename: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1739 - pub fn acct(filename: *const ::c_char) -> ::c_int; 1739 + pub fn acct(filename: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1757:24 | 1757 | file: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1757 | file: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1757 - file: *const ::c_char, 1757 + file: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1758:31 | 1758 | argv: *const *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1758 | argv: *const *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1758 - argv: *const *const ::c_char, 1758 + argv: *const *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1759:31 | 1759 | envp: *const *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1759 | envp: *const *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1759 - envp: *const *const ::c_char, 1759 + envp: *const *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1763:31 | 1763 | argv: *const *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1763 | argv: *const *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1763 - argv: *const *const ::c_char, 1763 + argv: *const *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1764:31 | 1764 | envp: *const *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1764 | envp: *const *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1764 - envp: *const *const ::c_char, 1764 + envp: *const *const c_char, | error[E0412]: cannot find type `msghdr` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1773:47 | 1773 | pub fn sendmsg(fd: ::c_int, msg: *const ::msghdr, flags: ::c_int) -> ::ssize_t; | ^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `msghdr` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1774:45 | 1774 | pub fn recvmsg(fd: ::c_int, msg: *mut ::msghdr, flags: ::c_int) -> ::ssize_t; | ^^^^^^ help: a struct with a similar name exists: `mmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `mmsghdr` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1777:34 | 1777 | pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1777 | pub fn strchrnul(s: *const ::c_schar, c: ::c_int) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1777 - pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char; 1777 + pub fn strchrnul(s: *const c_char, c: ::c_int) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1777:64 | 1777 | pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1777 | pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1777 - pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char; 1777 + pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1867:30 | 1867 | name: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1867 | name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1867 - name: *mut ::c_char, 1867 + name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/mod.rs:1875:30 | 1875 | name: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 1875 | name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 1889 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 1875 - name: *mut ::c_char, 1875 + name: *mut c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:12:21 | 12 | pub type nfds_t = ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 12 - pub type nfds_t = ::c_ulong; 12 + pub type nfds_t = c_ulong; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:64:33 | 64 | pub gl_pathv: *mut *mut c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 64 | pub gl_pathv: *mut *mut char, | ~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:76:29 | 76 | pub pw_name: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 76 | pub pw_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 76 - pub pw_name: *mut ::c_char, 76 + pub pw_name: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:77:31 | 77 | pub pw_passwd: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 77 | pub pw_passwd: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 77 - pub pw_passwd: *mut ::c_char, 77 + pub pw_passwd: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:80:30 | 80 | pub pw_gecos: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 80 | pub pw_gecos: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 80 - pub pw_gecos: *mut ::c_char, 80 + pub pw_gecos: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:81:28 | 81 | pub pw_dir: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 81 | pub pw_dir: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 81 - pub pw_dir: *mut ::c_char, 81 + pub pw_dir: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:82:30 | 82 | pub pw_shell: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 82 | pub pw_shell: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 82 - pub pw_shell: *mut ::c_char, 82 + pub pw_shell: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:86:29 | 86 | pub sp_namp: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 86 | pub sp_namp: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 86 - pub sp_namp: *mut ::c_char, 86 + pub sp_namp: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:87:29 | 87 | pub sp_pwdp: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 87 | pub sp_pwdp: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 566+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 87 - pub sp_pwdp: *mut ::c_char, 87 + pub sp_pwdp: *mut c_char, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:88:26 | 88 | pub sp_lstchg: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 88 - pub sp_lstchg: ::c_long, 88 + pub sp_lstchg: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:89:23 | 89 | pub sp_min: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 89 - pub sp_min: ::c_long, 89 + pub sp_min: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:90:23 | 90 | pub sp_max: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 90 - pub sp_max: ::c_long, 90 + pub sp_max: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:91:24 | 91 | pub sp_warn: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 91 - pub sp_warn: ::c_long, 91 + pub sp_warn: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:92:25 | 92 | pub sp_inact: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 92 - pub sp_inact: ::c_long, 92 + pub sp_inact: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:93:26 | 93 | pub sp_expire: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 93 - pub sp_expire: ::c_long, 93 + pub sp_expire: c_long, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:94:24 | 94 | pub sp_flag: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 566+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 94 - pub sp_flag: ::c_ulong, 94 + pub sp_flag: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:161:29 | 161 | pub if_name: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 161 | pub if_name: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 161 - pub if_name: *mut ::c_char, 161 + pub if_name: *mut c_char, | error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:216:26 | 216 | pub codes_ptr: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:313:33 | 313 | pub dlpi_name: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 313 | pub dlpi_name: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 313 - pub dlpi_name: *const ::c_char, 313 + pub dlpi_name: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:447:32 | 447 | pub mnt_fsname: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 447 | pub mnt_fsname: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 447 - pub mnt_fsname: *mut ::c_char, 447 + pub mnt_fsname: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:448:29 | 448 | pub mnt_dir: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 448 | pub mnt_dir: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 448 - pub mnt_dir: *mut ::c_char, 448 + pub mnt_dir: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:449:30 | 449 | pub mnt_type: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 449 | pub mnt_type: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 449 - pub mnt_type: *mut ::c_char, 449 + pub mnt_type: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:450:30 | 450 | pub mnt_opts: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 450 | pub mnt_opts: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 450 - pub mnt_opts: *mut ::c_char, 450 + pub mnt_opts: *mut c_char, | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:465:17 | 465 | __sd: ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:466:17 | 466 | __ss: ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:489:20 | 489 | pub dev: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 489 - pub dev: ::c_ulong, 489 + pub dev: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:490:22 | 490 | pub stamp: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 490 - pub stamp: ::c_ulong, 490 + pub stamp: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:491:24 | 491 | pub updated: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 491 - pub updated: ::c_ulong, 491 + pub updated: c_ulong, | error[E0412]: cannot find type `regoff_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:516:20 | 516 | pub rm_so: regoff_t, | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `regoff_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:517:20 | 517 | pub rm_eo: regoff_t, | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `regoff_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:516:20 | 516 | pub rm_so: regoff_t, | ^^^^^^^^ not found in this scope | help: you might be missing a type parameter --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:26 | 77 | pub struct $i { $($field)* } | ++++++++++ error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:574:36 | 574 | pub instruction_pointer: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:575:22 | 575 | pub args: [::__u64; 6], | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:585:19 | 585 | pub id: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:592:19 | 592 | pub id: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__s64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:593:20 | 593 | pub val: ::__s64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:599:19 | 599 | pub id: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__s64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:625:23 | 625 | pub src_fd: ::__s64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:626:27 | 626 | pub src_offset: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:627:27 | 627 | pub src_length: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:628:28 | 628 | pub dest_offset: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:632:26 | 632 | pub mem_start: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 632 - pub mem_start: ::c_ulong, 632 + pub mem_start: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:633:24 | 633 | pub mem_end: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 633 - pub mem_end: ::c_ulong, 633 + pub mem_end: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:647:28 | 647 | pub name: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 647 | pub name: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 647 - pub name: *const ::c_char, 647 + pub name: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:760:24 | 760 | pub d_name: [::c_char; 256], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 760 | pub d_name: [::c_schar; 256], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 760 - pub d_name: [::c_char; 256], 760 + pub d_name: [c_char; 256], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:773:22 | 773 | pub name: [::c_char; UINPUT_MAX_NAME_SIZE], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 773 | pub name: [::c_schar; UINPUT_MAX_NAME_SIZE], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 773 - pub name: [::c_char; UINPUT_MAX_NAME_SIZE], 773 + pub name: [c_char; UINPUT_MAX_NAME_SIZE], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:778:22 | 778 | pub name: [::c_char; UINPUT_MAX_NAME_SIZE], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 778 | pub name: [::c_schar; UINPUT_MAX_NAME_SIZE], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 778 - pub name: [::c_char; UINPUT_MAX_NAME_SIZE], 778 + pub name: [c_char; UINPUT_MAX_NAME_SIZE], | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:814:25 | 814 | pub mq_flags: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 814 - pub mq_flags: ::c_long, 814 + pub mq_flags: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:816:26 | 816 | pub mq_maxmsg: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 816 - pub mq_maxmsg: ::c_long, 816 + pub mq_maxmsg: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:818:27 | 818 | pub mq_msgsize: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 818 - pub mq_msgsize: ::c_long, 818 + pub mq_msgsize: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:820:27 | 820 | pub mq_curmsgs: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 820 - pub mq_curmsgs: ::c_long, 820 + pub mq_curmsgs: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:822:17 | 822 | pad: [::c_long; 4], | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 822 - pad: [::c_long; 4], 822 + pad: [c_long; 4], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:837:28 | 837 | pub ifru_slave: [::c_char; ::IFNAMSIZ], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 837 | pub ifru_slave: [::c_schar; ::IFNAMSIZ], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 837 - pub ifru_slave: [::c_char; ::IFNAMSIZ], 837 + pub ifru_slave: [c_char; ::IFNAMSIZ], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:838:30 | 838 | pub ifru_newname: [::c_char; ::IFNAMSIZ], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 838 | pub ifru_newname: [::c_schar; ::IFNAMSIZ], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 838 - pub ifru_newname: [::c_char; ::IFNAMSIZ], 838 + pub ifru_newname: [c_char; ::IFNAMSIZ], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:839:31 | 839 | pub ifru_data: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 839 | pub ifru_data: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 839 - pub ifru_data: *mut ::c_char, 839 + pub ifru_data: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:844:26 | 844 | pub ifr_name: [::c_char; ::IFNAMSIZ], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 844 | pub ifr_name: [::c_schar; ::IFNAMSIZ], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 844 - pub ifr_name: [::c_char; ::IFNAMSIZ], 844 + pub ifr_name: [c_char; ::IFNAMSIZ], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:853:30 | 853 | pub ifcu_buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 853 | pub ifcu_buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 853 - pub ifcu_buf: *mut ::c_char, 853 + pub ifcu_buf: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:879:24 | 879 | pub d_name: [::c_char; 256], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 879 | pub d_name: [::c_schar; 256], | ~~~~~~~ help: consider importing this type alias | 5661+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 879 - pub d_name: [::c_char; 256], 879 + pub d_name: [c_char; 256], | error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:885:28 | 885 | pub sched_flags: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:888:30 | 888 | pub sched_runtime: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:889:31 | 889 | pub sched_deadline: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:890:29 | 890 | pub sched_period: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1493:24 | 1493 | pub const MS_NOUSER: ::c_ulong = 0xffffffff80000000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1493 - pub const MS_NOUSER: ::c_ulong = 0xffffffff80000000; 1493 + pub const MS_NOUSER: c_ulong = 0xffffffff80000000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1815:22 | 1815 | pub const AT_NULL: ::c_ulong = 0; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1815 - pub const AT_NULL: ::c_ulong = 0; 1815 + pub const AT_NULL: c_ulong = 0; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1816:24 | 1816 | pub const AT_IGNORE: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1816 - pub const AT_IGNORE: ::c_ulong = 1; 1816 + pub const AT_IGNORE: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1817:24 | 1817 | pub const AT_EXECFD: ::c_ulong = 2; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1817 - pub const AT_EXECFD: ::c_ulong = 2; 1817 + pub const AT_EXECFD: c_ulong = 2; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1818:22 | 1818 | pub const AT_PHDR: ::c_ulong = 3; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1818 - pub const AT_PHDR: ::c_ulong = 3; 1818 + pub const AT_PHDR: c_ulong = 3; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1819:23 | 1819 | pub const AT_PHENT: ::c_ulong = 4; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1819 - pub const AT_PHENT: ::c_ulong = 4; 1819 + pub const AT_PHENT: c_ulong = 4; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1820:23 | 1820 | pub const AT_PHNUM: ::c_ulong = 5; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1820 - pub const AT_PHNUM: ::c_ulong = 5; 1820 + pub const AT_PHNUM: c_ulong = 5; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1821:24 | 1821 | pub const AT_PAGESZ: ::c_ulong = 6; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1821 - pub const AT_PAGESZ: ::c_ulong = 6; 1821 + pub const AT_PAGESZ: c_ulong = 6; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1822:22 | 1822 | pub const AT_BASE: ::c_ulong = 7; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1822 - pub const AT_BASE: ::c_ulong = 7; 1822 + pub const AT_BASE: c_ulong = 7; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1823:23 | 1823 | pub const AT_FLAGS: ::c_ulong = 8; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1823 - pub const AT_FLAGS: ::c_ulong = 8; 1823 + pub const AT_FLAGS: c_ulong = 8; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1824:23 | 1824 | pub const AT_ENTRY: ::c_ulong = 9; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1824 - pub const AT_ENTRY: ::c_ulong = 9; 1824 + pub const AT_ENTRY: c_ulong = 9; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1825:24 | 1825 | pub const AT_NOTELF: ::c_ulong = 10; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1825 - pub const AT_NOTELF: ::c_ulong = 10; 1825 + pub const AT_NOTELF: c_ulong = 10; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1826:21 | 1826 | pub const AT_UID: ::c_ulong = 11; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1826 - pub const AT_UID: ::c_ulong = 11; 1826 + pub const AT_UID: c_ulong = 11; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1827:22 | 1827 | pub const AT_EUID: ::c_ulong = 12; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1827 - pub const AT_EUID: ::c_ulong = 12; 1827 + pub const AT_EUID: c_ulong = 12; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1828:21 | 1828 | pub const AT_GID: ::c_ulong = 13; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1828 - pub const AT_GID: ::c_ulong = 13; 1828 + pub const AT_GID: c_ulong = 13; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1829:22 | 1829 | pub const AT_EGID: ::c_ulong = 14; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1829 - pub const AT_EGID: ::c_ulong = 14; 1829 + pub const AT_EGID: c_ulong = 14; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1830:26 | 1830 | pub const AT_PLATFORM: ::c_ulong = 15; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1830 - pub const AT_PLATFORM: ::c_ulong = 15; 1830 + pub const AT_PLATFORM: c_ulong = 15; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1831:23 | 1831 | pub const AT_HWCAP: ::c_ulong = 16; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1831 - pub const AT_HWCAP: ::c_ulong = 16; 1831 + pub const AT_HWCAP: c_ulong = 16; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1832:24 | 1832 | pub const AT_CLKTCK: ::c_ulong = 17; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1832 - pub const AT_CLKTCK: ::c_ulong = 17; 1832 + pub const AT_CLKTCK: c_ulong = 17; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1834:24 | 1834 | pub const AT_SECURE: ::c_ulong = 23; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1834 - pub const AT_SECURE: ::c_ulong = 23; 1834 + pub const AT_SECURE: c_ulong = 23; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1835:31 | 1835 | pub const AT_BASE_PLATFORM: ::c_ulong = 24; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1835 - pub const AT_BASE_PLATFORM: ::c_ulong = 24; 1835 + pub const AT_BASE_PLATFORM: c_ulong = 24; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1836:24 | 1836 | pub const AT_RANDOM: ::c_ulong = 25; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1836 - pub const AT_RANDOM: ::c_ulong = 25; 1836 + pub const AT_RANDOM: c_ulong = 25; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1837:24 | 1837 | pub const AT_HWCAP2: ::c_ulong = 26; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1837 - pub const AT_HWCAP2: ::c_ulong = 26; 1837 + pub const AT_HWCAP2: c_ulong = 26; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1839:24 | 1839 | pub const AT_EXECFN: ::c_ulong = 31; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1839 - pub const AT_EXECFN: ::c_ulong = 31; 1839 + pub const AT_EXECFN: c_ulong = 31; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:1843:30 | 1843 | pub const AT_SYSINFO_EHDR: ::c_ulong = 33; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 1843 - pub const AT_SYSINFO_EHDR: ::c_ulong = 33; 1843 + pub const AT_SYSINFO_EHDR: c_ulong = 33; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2014:24 | 2014 | pub const ST_RDONLY: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2014 - pub const ST_RDONLY: ::c_ulong = 1; 2014 + pub const ST_RDONLY: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2015:24 | 2015 | pub const ST_NOSUID: ::c_ulong = 2; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2015 - pub const ST_NOSUID: ::c_ulong = 2; 2015 + pub const ST_NOSUID: c_ulong = 2; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2016:23 | 2016 | pub const ST_NODEV: ::c_ulong = 4; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2016 - pub const ST_NODEV: ::c_ulong = 4; 2016 + pub const ST_NODEV: c_ulong = 4; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2017:24 | 2017 | pub const ST_NOEXEC: ::c_ulong = 8; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2017 - pub const ST_NOEXEC: ::c_ulong = 8; 2017 + pub const ST_NOEXEC: c_ulong = 8; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2018:29 | 2018 | pub const ST_SYNCHRONOUS: ::c_ulong = 16; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2018 - pub const ST_SYNCHRONOUS: ::c_ulong = 16; 2018 + pub const ST_SYNCHRONOUS: c_ulong = 16; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2019:26 | 2019 | pub const ST_MANDLOCK: ::c_ulong = 64; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2019 - pub const ST_MANDLOCK: ::c_ulong = 64; 2019 + pub const ST_MANDLOCK: c_ulong = 64; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2020:23 | 2020 | pub const ST_WRITE: ::c_ulong = 128; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2020 - pub const ST_WRITE: ::c_ulong = 128; 2020 + pub const ST_WRITE: c_ulong = 128; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2021:24 | 2021 | pub const ST_APPEND: ::c_ulong = 256; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2021 - pub const ST_APPEND: ::c_ulong = 256; 2021 + pub const ST_APPEND: c_ulong = 256; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2022:27 | 2022 | pub const ST_IMMUTABLE: ::c_ulong = 512; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2022 - pub const ST_IMMUTABLE: ::c_ulong = 512; 2022 + pub const ST_IMMUTABLE: c_ulong = 512; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2023:25 | 2023 | pub const ST_NOATIME: ::c_ulong = 1024; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2023 - pub const ST_NOATIME: ::c_ulong = 1024; 2023 + pub const ST_NOATIME: c_ulong = 1024; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2024:28 | 2024 | pub const ST_NODIRATIME: ::c_ulong = 2048; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2024 - pub const ST_NODIRATIME: ::c_ulong = 2048; 2024 + pub const ST_NODIRATIME: c_ulong = 2048; | error[E0425]: cannot find value `__SIZEOF_PTHREAD_MUTEX_T` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2057:19 | 2057 | size: [0; __SIZEOF_PTHREAD_MUTEX_T], | ^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_MUTEXATTR_T` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:636:1 | 636 | pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; | -------------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_MUTEXATTR_T` defined here error[E0425]: cannot find value `__SIZEOF_PTHREAD_RWLOCK_T` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2063:19 | 2063 | size: [0; __SIZEOF_PTHREAD_RWLOCK_T], | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_RWLOCKATTR_T` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:637:1 | 637 | pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: usize = 8; | --------------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_RWLOCKATTR_T` defined here error[E0412]: cannot find type `sem_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2138:30 | 2138 | pub const SEM_FAILED: *mut ::sem_t = 0 as *mut sem_t; | ^^^^^ not found in the crate root error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2138:48 | 2138 | pub const SEM_FAILED: *mut ::sem_t = 0 as *mut sem_t; | ^^^^^ not found in this scope error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2300:33 | 2300 | pub const PR_SET_PTRACER_ANY: ::c_ulong = 0xffffffffffffffff; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2300 - pub const PR_SET_PTRACER_ANY: ::c_ulong = 0xffffffffffffffff; 2300 + pub const PR_SET_PTRACER_ANY: c_ulong = 0xffffffffffffffff; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2354:40 | 2354 | pub const SECCOMP_FILTER_FLAG_TSYNC: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2354 - pub const SECCOMP_FILTER_FLAG_TSYNC: ::c_ulong = 1; 2354 + pub const SECCOMP_FILTER_FLAG_TSYNC: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2355:38 | 2355 | pub const SECCOMP_FILTER_FLAG_LOG: ::c_ulong = 2; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2355 - pub const SECCOMP_FILTER_FLAG_LOG: ::c_ulong = 2; 2355 + pub const SECCOMP_FILTER_FLAG_LOG: c_ulong = 2; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2356:45 | 2356 | pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: ::c_ulong = 4; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2356 - pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: ::c_ulong = 4; 2356 + pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: c_ulong = 4; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2357:47 | 2357 | pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: ::c_ulong = 8; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2357 - pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: ::c_ulong = 8; 2357 + pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: c_ulong = 8; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2358:46 | 2358 | pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: ::c_ulong = 16; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2358 - pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: ::c_ulong = 16; 2358 + pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: c_ulong = 16; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2359:53 | 2359 | pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: ::c_ulong = 32; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2359 - pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: ::c_ulong = 32; 2359 + pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: c_ulong = 32; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2374:47 | 2374 | pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2374 - pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: ::c_ulong = 1; 2374 + pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2376:39 | 2376 | pub const SECCOMP_ADDFD_FLAG_SETFD: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2376 - pub const SECCOMP_ADDFD_FLAG_SETFD: ::c_ulong = 1; 2376 + pub const SECCOMP_ADDFD_FLAG_SETFD: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2377:38 | 2377 | pub const SECCOMP_ADDFD_FLAG_SEND: ::c_ulong = 2; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2377 - pub const SECCOMP_ADDFD_FLAG_SEND: ::c_ulong = 2; 2377 + pub const SECCOMP_ADDFD_FLAG_SEND: c_ulong = 2; | error[E0425]: cannot find value `O_NONBLOCK` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2384:35 | 2384 | pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK; | ^^^^^^^^^^ help: a constant with a similar name exists: `IN_NONBLOCK` ... 3817 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK; | -------------------------------------------- similarly named constant `IN_NONBLOCK` defined here error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2519:30 | 2519 | pub const RESOLVE_NO_XDEV: ::__u64 = 0x01; | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2520:36 | 2520 | pub const RESOLVE_NO_MAGICLINKS: ::__u64 = 0x02; | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2521:34 | 2521 | pub const RESOLVE_NO_SYMLINKS: ::__u64 = 0x04; | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2522:30 | 2522 | pub const RESOLVE_BENEATH: ::__u64 = 0x08; | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2523:30 | 2523 | pub const RESOLVE_IN_ROOT: ::__u64 = 0x10; | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2524:29 | 2524 | pub const RESOLVE_CACHED: ::__u64 = 0x20; | ^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2916:24 | 2916 | pub const SIOCADDRT: ::c_ulong = 0x0000890B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2916 - pub const SIOCADDRT: ::c_ulong = 0x0000890B; 2916 + pub const SIOCADDRT: c_ulong = 0x0000890B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2917:24 | 2917 | pub const SIOCDELRT: ::c_ulong = 0x0000890C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2917 - pub const SIOCDELRT: ::c_ulong = 0x0000890C; 2917 + pub const SIOCDELRT: c_ulong = 0x0000890C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2918:26 | 2918 | pub const SIOCGIFNAME: ::c_ulong = 0x00008910; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2918 - pub const SIOCGIFNAME: ::c_ulong = 0x00008910; 2918 + pub const SIOCGIFNAME: c_ulong = 0x00008910; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2919:26 | 2919 | pub const SIOCSIFLINK: ::c_ulong = 0x00008911; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2919 - pub const SIOCSIFLINK: ::c_ulong = 0x00008911; 2919 + pub const SIOCSIFLINK: c_ulong = 0x00008911; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2920:26 | 2920 | pub const SIOCGIFCONF: ::c_ulong = 0x00008912; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2920 - pub const SIOCGIFCONF: ::c_ulong = 0x00008912; 2920 + pub const SIOCGIFCONF: c_ulong = 0x00008912; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2921:27 | 2921 | pub const SIOCGIFFLAGS: ::c_ulong = 0x00008913; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2921 - pub const SIOCGIFFLAGS: ::c_ulong = 0x00008913; 2921 + pub const SIOCGIFFLAGS: c_ulong = 0x00008913; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2922:27 | 2922 | pub const SIOCSIFFLAGS: ::c_ulong = 0x00008914; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2922 - pub const SIOCSIFFLAGS: ::c_ulong = 0x00008914; 2922 + pub const SIOCSIFFLAGS: c_ulong = 0x00008914; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2923:26 | 2923 | pub const SIOCGIFADDR: ::c_ulong = 0x00008915; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2923 - pub const SIOCGIFADDR: ::c_ulong = 0x00008915; 2923 + pub const SIOCGIFADDR: c_ulong = 0x00008915; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2924:26 | 2924 | pub const SIOCSIFADDR: ::c_ulong = 0x00008916; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2924 - pub const SIOCSIFADDR: ::c_ulong = 0x00008916; 2924 + pub const SIOCSIFADDR: c_ulong = 0x00008916; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2925:29 | 2925 | pub const SIOCGIFDSTADDR: ::c_ulong = 0x00008917; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2925 - pub const SIOCGIFDSTADDR: ::c_ulong = 0x00008917; 2925 + pub const SIOCGIFDSTADDR: c_ulong = 0x00008917; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2926:29 | 2926 | pub const SIOCSIFDSTADDR: ::c_ulong = 0x00008918; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2926 - pub const SIOCSIFDSTADDR: ::c_ulong = 0x00008918; 2926 + pub const SIOCSIFDSTADDR: c_ulong = 0x00008918; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2927:29 | 2927 | pub const SIOCGIFBRDADDR: ::c_ulong = 0x00008919; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2927 - pub const SIOCGIFBRDADDR: ::c_ulong = 0x00008919; 2927 + pub const SIOCGIFBRDADDR: c_ulong = 0x00008919; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2928:29 | 2928 | pub const SIOCSIFBRDADDR: ::c_ulong = 0x0000891A; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2928 - pub const SIOCSIFBRDADDR: ::c_ulong = 0x0000891A; 2928 + pub const SIOCSIFBRDADDR: c_ulong = 0x0000891A; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2929:29 | 2929 | pub const SIOCGIFNETMASK: ::c_ulong = 0x0000891B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2929 - pub const SIOCGIFNETMASK: ::c_ulong = 0x0000891B; 2929 + pub const SIOCGIFNETMASK: c_ulong = 0x0000891B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2930:29 | 2930 | pub const SIOCSIFNETMASK: ::c_ulong = 0x0000891C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2930 - pub const SIOCSIFNETMASK: ::c_ulong = 0x0000891C; 2930 + pub const SIOCSIFNETMASK: c_ulong = 0x0000891C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2931:28 | 2931 | pub const SIOCGIFMETRIC: ::c_ulong = 0x0000891D; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2931 - pub const SIOCGIFMETRIC: ::c_ulong = 0x0000891D; 2931 + pub const SIOCGIFMETRIC: c_ulong = 0x0000891D; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2932:28 | 2932 | pub const SIOCSIFMETRIC: ::c_ulong = 0x0000891E; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2932 - pub const SIOCSIFMETRIC: ::c_ulong = 0x0000891E; 2932 + pub const SIOCSIFMETRIC: c_ulong = 0x0000891E; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2933:25 | 2933 | pub const SIOCGIFMEM: ::c_ulong = 0x0000891F; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2933 - pub const SIOCGIFMEM: ::c_ulong = 0x0000891F; 2933 + pub const SIOCGIFMEM: c_ulong = 0x0000891F; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2934:25 | 2934 | pub const SIOCSIFMEM: ::c_ulong = 0x00008920; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2934 - pub const SIOCSIFMEM: ::c_ulong = 0x00008920; 2934 + pub const SIOCSIFMEM: c_ulong = 0x00008920; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2935:25 | 2935 | pub const SIOCGIFMTU: ::c_ulong = 0x00008921; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2935 - pub const SIOCGIFMTU: ::c_ulong = 0x00008921; 2935 + pub const SIOCGIFMTU: c_ulong = 0x00008921; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2936:25 | 2936 | pub const SIOCSIFMTU: ::c_ulong = 0x00008922; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2936 - pub const SIOCSIFMTU: ::c_ulong = 0x00008922; 2936 + pub const SIOCSIFMTU: c_ulong = 0x00008922; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2937:26 | 2937 | pub const SIOCSIFNAME: ::c_ulong = 0x00008923; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2937 - pub const SIOCSIFNAME: ::c_ulong = 0x00008923; 2937 + pub const SIOCSIFNAME: c_ulong = 0x00008923; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2938:28 | 2938 | pub const SIOCSIFHWADDR: ::c_ulong = 0x00008924; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2938 - pub const SIOCSIFHWADDR: ::c_ulong = 0x00008924; 2938 + pub const SIOCSIFHWADDR: c_ulong = 0x00008924; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2939:27 | 2939 | pub const SIOCGIFENCAP: ::c_ulong = 0x00008925; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2939 - pub const SIOCGIFENCAP: ::c_ulong = 0x00008925; 2939 + pub const SIOCGIFENCAP: c_ulong = 0x00008925; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2940:27 | 2940 | pub const SIOCSIFENCAP: ::c_ulong = 0x00008926; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2940 - pub const SIOCSIFENCAP: ::c_ulong = 0x00008926; 2940 + pub const SIOCSIFENCAP: c_ulong = 0x00008926; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2941:28 | 2941 | pub const SIOCGIFHWADDR: ::c_ulong = 0x00008927; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2941 - pub const SIOCGIFHWADDR: ::c_ulong = 0x00008927; 2941 + pub const SIOCGIFHWADDR: c_ulong = 0x00008927; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2942:27 | 2942 | pub const SIOCGIFSLAVE: ::c_ulong = 0x00008929; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2942 - pub const SIOCGIFSLAVE: ::c_ulong = 0x00008929; 2942 + pub const SIOCGIFSLAVE: c_ulong = 0x00008929; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2943:27 | 2943 | pub const SIOCSIFSLAVE: ::c_ulong = 0x00008930; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2943 - pub const SIOCSIFSLAVE: ::c_ulong = 0x00008930; 2943 + pub const SIOCSIFSLAVE: c_ulong = 0x00008930; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2944:27 | 2944 | pub const SIOCADDMULTI: ::c_ulong = 0x00008931; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2944 - pub const SIOCADDMULTI: ::c_ulong = 0x00008931; 2944 + pub const SIOCADDMULTI: c_ulong = 0x00008931; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2945:27 | 2945 | pub const SIOCDELMULTI: ::c_ulong = 0x00008932; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2945 - pub const SIOCDELMULTI: ::c_ulong = 0x00008932; 2945 + pub const SIOCDELMULTI: c_ulong = 0x00008932; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2946:27 | 2946 | pub const SIOCGIFINDEX: ::c_ulong = 0x00008933; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2946 - pub const SIOCGIFINDEX: ::c_ulong = 0x00008933; 2946 + pub const SIOCGIFINDEX: c_ulong = 0x00008933; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2947:26 | 2947 | pub const SIOGIFINDEX: ::c_ulong = SIOCGIFINDEX; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2947 - pub const SIOGIFINDEX: ::c_ulong = SIOCGIFINDEX; 2947 + pub const SIOGIFINDEX: c_ulong = SIOCGIFINDEX; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2948:28 | 2948 | pub const SIOCSIFPFLAGS: ::c_ulong = 0x00008934; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2948 - pub const SIOCSIFPFLAGS: ::c_ulong = 0x00008934; 2948 + pub const SIOCSIFPFLAGS: c_ulong = 0x00008934; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2949:28 | 2949 | pub const SIOCGIFPFLAGS: ::c_ulong = 0x00008935; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2949 - pub const SIOCGIFPFLAGS: ::c_ulong = 0x00008935; 2949 + pub const SIOCGIFPFLAGS: c_ulong = 0x00008935; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2950:26 | 2950 | pub const SIOCDIFADDR: ::c_ulong = 0x00008936; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2950 - pub const SIOCDIFADDR: ::c_ulong = 0x00008936; 2950 + pub const SIOCDIFADDR: c_ulong = 0x00008936; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2951:33 | 2951 | pub const SIOCSIFHWBROADCAST: ::c_ulong = 0x00008937; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2951 - pub const SIOCSIFHWBROADCAST: ::c_ulong = 0x00008937; 2951 + pub const SIOCSIFHWBROADCAST: c_ulong = 0x00008937; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2952:27 | 2952 | pub const SIOCGIFCOUNT: ::c_ulong = 0x00008938; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2952 - pub const SIOCGIFCOUNT: ::c_ulong = 0x00008938; 2952 + pub const SIOCGIFCOUNT: c_ulong = 0x00008938; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2953:24 | 2953 | pub const SIOCGIFBR: ::c_ulong = 0x00008940; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2953 - pub const SIOCGIFBR: ::c_ulong = 0x00008940; 2953 + pub const SIOCGIFBR: c_ulong = 0x00008940; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2954:24 | 2954 | pub const SIOCSIFBR: ::c_ulong = 0x00008941; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2954 - pub const SIOCSIFBR: ::c_ulong = 0x00008941; 2954 + pub const SIOCSIFBR: c_ulong = 0x00008941; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2955:28 | 2955 | pub const SIOCGIFTXQLEN: ::c_ulong = 0x00008942; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2955 - pub const SIOCGIFTXQLEN: ::c_ulong = 0x00008942; 2955 + pub const SIOCGIFTXQLEN: c_ulong = 0x00008942; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2956:28 | 2956 | pub const SIOCSIFTXQLEN: ::c_ulong = 0x00008943; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2956 - pub const SIOCSIFTXQLEN: ::c_ulong = 0x00008943; 2956 + pub const SIOCSIFTXQLEN: c_ulong = 0x00008943; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2957:26 | 2957 | pub const SIOCETHTOOL: ::c_ulong = 0x00008946; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2957 - pub const SIOCETHTOOL: ::c_ulong = 0x00008946; 2957 + pub const SIOCETHTOOL: c_ulong = 0x00008946; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2958:26 | 2958 | pub const SIOCGMIIPHY: ::c_ulong = 0x00008947; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2958 - pub const SIOCGMIIPHY: ::c_ulong = 0x00008947; 2958 + pub const SIOCGMIIPHY: c_ulong = 0x00008947; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2959:26 | 2959 | pub const SIOCGMIIREG: ::c_ulong = 0x00008948; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2959 - pub const SIOCGMIIREG: ::c_ulong = 0x00008948; 2959 + pub const SIOCGMIIREG: c_ulong = 0x00008948; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2960:26 | 2960 | pub const SIOCSMIIREG: ::c_ulong = 0x00008949; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2960 - pub const SIOCSMIIREG: ::c_ulong = 0x00008949; 2960 + pub const SIOCSMIIREG: c_ulong = 0x00008949; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2961:25 | 2961 | pub const SIOCWANDEV: ::c_ulong = 0x0000894A; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2961 - pub const SIOCWANDEV: ::c_ulong = 0x0000894A; 2961 + pub const SIOCWANDEV: c_ulong = 0x0000894A; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2962:26 | 2962 | pub const SIOCOUTQNSD: ::c_ulong = 0x0000894B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2962 - pub const SIOCOUTQNSD: ::c_ulong = 0x0000894B; 2962 + pub const SIOCOUTQNSD: c_ulong = 0x0000894B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2963:24 | 2963 | pub const SIOCGSKNS: ::c_ulong = 0x0000894C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2963 - pub const SIOCGSKNS: ::c_ulong = 0x0000894C; 2963 + pub const SIOCGSKNS: c_ulong = 0x0000894C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2964:23 | 2964 | pub const SIOCDARP: ::c_ulong = 0x00008953; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2964 - pub const SIOCDARP: ::c_ulong = 0x00008953; 2964 + pub const SIOCDARP: c_ulong = 0x00008953; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2965:23 | 2965 | pub const SIOCGARP: ::c_ulong = 0x00008954; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2965 - pub const SIOCGARP: ::c_ulong = 0x00008954; 2965 + pub const SIOCGARP: c_ulong = 0x00008954; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2966:23 | 2966 | pub const SIOCSARP: ::c_ulong = 0x00008955; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2966 - pub const SIOCSARP: ::c_ulong = 0x00008955; 2966 + pub const SIOCSARP: c_ulong = 0x00008955; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2967:24 | 2967 | pub const SIOCDRARP: ::c_ulong = 0x00008960; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2967 - pub const SIOCDRARP: ::c_ulong = 0x00008960; 2967 + pub const SIOCDRARP: c_ulong = 0x00008960; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2968:24 | 2968 | pub const SIOCGRARP: ::c_ulong = 0x00008961; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2968 - pub const SIOCGRARP: ::c_ulong = 0x00008961; 2968 + pub const SIOCGRARP: c_ulong = 0x00008961; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2969:24 | 2969 | pub const SIOCSRARP: ::c_ulong = 0x00008962; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2969 - pub const SIOCSRARP: ::c_ulong = 0x00008962; 2969 + pub const SIOCSRARP: c_ulong = 0x00008962; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2970:25 | 2970 | pub const SIOCGIFMAP: ::c_ulong = 0x00008970; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2970 - pub const SIOCGIFMAP: ::c_ulong = 0x00008970; 2970 + pub const SIOCGIFMAP: c_ulong = 0x00008970; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2971:25 | 2971 | pub const SIOCSIFMAP: ::c_ulong = 0x00008971; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2971 - pub const SIOCSIFMAP: ::c_ulong = 0x00008971; 2971 + pub const SIOCSIFMAP: c_ulong = 0x00008971; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2972:28 | 2972 | pub const SIOCSHWTSTAMP: ::c_ulong = 0x000089b0; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2972 - pub const SIOCSHWTSTAMP: ::c_ulong = 0x000089b0; 2972 + pub const SIOCSHWTSTAMP: c_ulong = 0x000089b0; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2973:28 | 2973 | pub const SIOCGHWTSTAMP: ::c_ulong = 0x000089b1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2973 - pub const SIOCGHWTSTAMP: ::c_ulong = 0x000089b1; 2973 + pub const SIOCGHWTSTAMP: c_ulong = 0x000089b1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2976:27 | 2976 | pub const WIRELESS_EXT: ::c_ulong = 0x16; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2976 - pub const WIRELESS_EXT: ::c_ulong = 0x16; 2976 + pub const WIRELESS_EXT: c_ulong = 0x16; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2978:28 | 2978 | pub const SIOCSIWCOMMIT: ::c_ulong = 0x8B00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2978 - pub const SIOCSIWCOMMIT: ::c_ulong = 0x8B00; 2978 + pub const SIOCSIWCOMMIT: c_ulong = 0x8B00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2979:26 | 2979 | pub const SIOCGIWNAME: ::c_ulong = 0x8B01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2979 - pub const SIOCGIWNAME: ::c_ulong = 0x8B01; 2979 + pub const SIOCGIWNAME: c_ulong = 0x8B01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2981:26 | 2981 | pub const SIOCSIWNWID: ::c_ulong = 0x8B02; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2981 - pub const SIOCSIWNWID: ::c_ulong = 0x8B02; 2981 + pub const SIOCSIWNWID: c_ulong = 0x8B02; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2982:26 | 2982 | pub const SIOCGIWNWID: ::c_ulong = 0x8B03; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2982 - pub const SIOCGIWNWID: ::c_ulong = 0x8B03; 2982 + pub const SIOCGIWNWID: c_ulong = 0x8B03; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2983:26 | 2983 | pub const SIOCSIWFREQ: ::c_ulong = 0x8B04; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2983 - pub const SIOCSIWFREQ: ::c_ulong = 0x8B04; 2983 + pub const SIOCSIWFREQ: c_ulong = 0x8B04; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2984:26 | 2984 | pub const SIOCGIWFREQ: ::c_ulong = 0x8B05; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2984 - pub const SIOCGIWFREQ: ::c_ulong = 0x8B05; 2984 + pub const SIOCGIWFREQ: c_ulong = 0x8B05; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2985:26 | 2985 | pub const SIOCSIWMODE: ::c_ulong = 0x8B06; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2985 - pub const SIOCSIWMODE: ::c_ulong = 0x8B06; 2985 + pub const SIOCSIWMODE: c_ulong = 0x8B06; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2986:26 | 2986 | pub const SIOCGIWMODE: ::c_ulong = 0x8B07; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2986 - pub const SIOCGIWMODE: ::c_ulong = 0x8B07; 2986 + pub const SIOCGIWMODE: c_ulong = 0x8B07; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2987:26 | 2987 | pub const SIOCSIWSENS: ::c_ulong = 0x8B08; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2987 - pub const SIOCSIWSENS: ::c_ulong = 0x8B08; 2987 + pub const SIOCSIWSENS: c_ulong = 0x8B08; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2988:26 | 2988 | pub const SIOCGIWSENS: ::c_ulong = 0x8B09; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2988 - pub const SIOCGIWSENS: ::c_ulong = 0x8B09; 2988 + pub const SIOCGIWSENS: c_ulong = 0x8B09; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2990:27 | 2990 | pub const SIOCSIWRANGE: ::c_ulong = 0x8B0A; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2990 - pub const SIOCSIWRANGE: ::c_ulong = 0x8B0A; 2990 + pub const SIOCSIWRANGE: c_ulong = 0x8B0A; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2991:27 | 2991 | pub const SIOCGIWRANGE: ::c_ulong = 0x8B0B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2991 - pub const SIOCGIWRANGE: ::c_ulong = 0x8B0B; 2991 + pub const SIOCGIWRANGE: c_ulong = 0x8B0B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2992:26 | 2992 | pub const SIOCSIWPRIV: ::c_ulong = 0x8B0C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2992 - pub const SIOCSIWPRIV: ::c_ulong = 0x8B0C; 2992 + pub const SIOCSIWPRIV: c_ulong = 0x8B0C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2993:26 | 2993 | pub const SIOCGIWPRIV: ::c_ulong = 0x8B0D; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2993 - pub const SIOCGIWPRIV: ::c_ulong = 0x8B0D; 2993 + pub const SIOCGIWPRIV: c_ulong = 0x8B0D; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2994:27 | 2994 | pub const SIOCSIWSTATS: ::c_ulong = 0x8B0E; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2994 - pub const SIOCSIWSTATS: ::c_ulong = 0x8B0E; 2994 + pub const SIOCSIWSTATS: c_ulong = 0x8B0E; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2995:27 | 2995 | pub const SIOCGIWSTATS: ::c_ulong = 0x8B0F; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2995 - pub const SIOCGIWSTATS: ::c_ulong = 0x8B0F; 2995 + pub const SIOCGIWSTATS: c_ulong = 0x8B0F; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2997:25 | 2997 | pub const SIOCSIWSPY: ::c_ulong = 0x8B10; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2997 - pub const SIOCSIWSPY: ::c_ulong = 0x8B10; 2997 + pub const SIOCSIWSPY: c_ulong = 0x8B10; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2998:25 | 2998 | pub const SIOCGIWSPY: ::c_ulong = 0x8B11; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2998 - pub const SIOCGIWSPY: ::c_ulong = 0x8B11; 2998 + pub const SIOCGIWSPY: c_ulong = 0x8B11; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:2999:28 | 2999 | pub const SIOCSIWTHRSPY: ::c_ulong = 0x8B12; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 2999 - pub const SIOCSIWTHRSPY: ::c_ulong = 0x8B12; 2999 + pub const SIOCSIWTHRSPY: c_ulong = 0x8B12; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3000:28 | 3000 | pub const SIOCGIWTHRSPY: ::c_ulong = 0x8B13; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3000 - pub const SIOCGIWTHRSPY: ::c_ulong = 0x8B13; 3000 + pub const SIOCGIWTHRSPY: c_ulong = 0x8B13; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3002:24 | 3002 | pub const SIOCSIWAP: ::c_ulong = 0x8B14; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3002 - pub const SIOCSIWAP: ::c_ulong = 0x8B14; 3002 + pub const SIOCSIWAP: c_ulong = 0x8B14; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3003:24 | 3003 | pub const SIOCGIWAP: ::c_ulong = 0x8B15; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3003 - pub const SIOCGIWAP: ::c_ulong = 0x8B15; 3003 + pub const SIOCGIWAP: c_ulong = 0x8B15; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3004:28 | 3004 | pub const SIOCGIWAPLIST: ::c_ulong = 0x8B17; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3004 - pub const SIOCGIWAPLIST: ::c_ulong = 0x8B17; 3004 + pub const SIOCGIWAPLIST: c_ulong = 0x8B17; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3005:26 | 3005 | pub const SIOCSIWSCAN: ::c_ulong = 0x8B18; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3005 - pub const SIOCSIWSCAN: ::c_ulong = 0x8B18; 3005 + pub const SIOCSIWSCAN: c_ulong = 0x8B18; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3006:26 | 3006 | pub const SIOCGIWSCAN: ::c_ulong = 0x8B19; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3006 - pub const SIOCGIWSCAN: ::c_ulong = 0x8B19; 3006 + pub const SIOCGIWSCAN: c_ulong = 0x8B19; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3008:27 | 3008 | pub const SIOCSIWESSID: ::c_ulong = 0x8B1A; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3008 - pub const SIOCSIWESSID: ::c_ulong = 0x8B1A; 3008 + pub const SIOCSIWESSID: c_ulong = 0x8B1A; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3009:27 | 3009 | pub const SIOCGIWESSID: ::c_ulong = 0x8B1B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3009 - pub const SIOCGIWESSID: ::c_ulong = 0x8B1B; 3009 + pub const SIOCGIWESSID: c_ulong = 0x8B1B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3010:27 | 3010 | pub const SIOCSIWNICKN: ::c_ulong = 0x8B1C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3010 - pub const SIOCSIWNICKN: ::c_ulong = 0x8B1C; 3010 + pub const SIOCSIWNICKN: c_ulong = 0x8B1C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3011:27 | 3011 | pub const SIOCGIWNICKN: ::c_ulong = 0x8B1D; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3011 - pub const SIOCGIWNICKN: ::c_ulong = 0x8B1D; 3011 + pub const SIOCGIWNICKN: c_ulong = 0x8B1D; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3013:26 | 3013 | pub const SIOCSIWRATE: ::c_ulong = 0x8B20; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3013 - pub const SIOCSIWRATE: ::c_ulong = 0x8B20; 3013 + pub const SIOCSIWRATE: c_ulong = 0x8B20; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3014:26 | 3014 | pub const SIOCGIWRATE: ::c_ulong = 0x8B21; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3014 - pub const SIOCGIWRATE: ::c_ulong = 0x8B21; 3014 + pub const SIOCGIWRATE: c_ulong = 0x8B21; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3015:25 | 3015 | pub const SIOCSIWRTS: ::c_ulong = 0x8B22; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3015 - pub const SIOCSIWRTS: ::c_ulong = 0x8B22; 3015 + pub const SIOCSIWRTS: c_ulong = 0x8B22; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3016:25 | 3016 | pub const SIOCGIWRTS: ::c_ulong = 0x8B23; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3016 - pub const SIOCGIWRTS: ::c_ulong = 0x8B23; 3016 + pub const SIOCGIWRTS: c_ulong = 0x8B23; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3017:26 | 3017 | pub const SIOCSIWFRAG: ::c_ulong = 0x8B24; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3017 - pub const SIOCSIWFRAG: ::c_ulong = 0x8B24; 3017 + pub const SIOCSIWFRAG: c_ulong = 0x8B24; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3018:26 | 3018 | pub const SIOCGIWFRAG: ::c_ulong = 0x8B25; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3018 - pub const SIOCGIWFRAG: ::c_ulong = 0x8B25; 3018 + pub const SIOCGIWFRAG: c_ulong = 0x8B25; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3019:27 | 3019 | pub const SIOCSIWTXPOW: ::c_ulong = 0x8B26; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3019 - pub const SIOCSIWTXPOW: ::c_ulong = 0x8B26; 3019 + pub const SIOCSIWTXPOW: c_ulong = 0x8B26; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3020:27 | 3020 | pub const SIOCGIWTXPOW: ::c_ulong = 0x8B27; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3020 - pub const SIOCGIWTXPOW: ::c_ulong = 0x8B27; 3020 + pub const SIOCGIWTXPOW: c_ulong = 0x8B27; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3021:27 | 3021 | pub const SIOCSIWRETRY: ::c_ulong = 0x8B28; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3021 - pub const SIOCSIWRETRY: ::c_ulong = 0x8B28; 3021 + pub const SIOCSIWRETRY: c_ulong = 0x8B28; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3022:27 | 3022 | pub const SIOCGIWRETRY: ::c_ulong = 0x8B29; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3022 - pub const SIOCGIWRETRY: ::c_ulong = 0x8B29; 3022 + pub const SIOCGIWRETRY: c_ulong = 0x8B29; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3024:28 | 3024 | pub const SIOCSIWENCODE: ::c_ulong = 0x8B2A; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3024 - pub const SIOCSIWENCODE: ::c_ulong = 0x8B2A; 3024 + pub const SIOCSIWENCODE: c_ulong = 0x8B2A; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3025:28 | 3025 | pub const SIOCGIWENCODE: ::c_ulong = 0x8B2B; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3025 - pub const SIOCGIWENCODE: ::c_ulong = 0x8B2B; 3025 + pub const SIOCGIWENCODE: c_ulong = 0x8B2B; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3027:27 | 3027 | pub const SIOCSIWPOWER: ::c_ulong = 0x8B2C; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3027 - pub const SIOCSIWPOWER: ::c_ulong = 0x8B2C; 3027 + pub const SIOCSIWPOWER: c_ulong = 0x8B2C; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3028:27 | 3028 | pub const SIOCGIWPOWER: ::c_ulong = 0x8B2D; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3028 - pub const SIOCGIWPOWER: ::c_ulong = 0x8B2D; 3028 + pub const SIOCGIWPOWER: c_ulong = 0x8B2D; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3030:27 | 3030 | pub const SIOCSIWGENIE: ::c_ulong = 0x8B30; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3030 - pub const SIOCSIWGENIE: ::c_ulong = 0x8B30; 3030 + pub const SIOCSIWGENIE: c_ulong = 0x8B30; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3031:27 | 3031 | pub const SIOCGIWGENIE: ::c_ulong = 0x8B31; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3031 - pub const SIOCGIWGENIE: ::c_ulong = 0x8B31; 3031 + pub const SIOCGIWGENIE: c_ulong = 0x8B31; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3033:26 | 3033 | pub const SIOCSIWMLME: ::c_ulong = 0x8B16; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3033 - pub const SIOCSIWMLME: ::c_ulong = 0x8B16; 3033 + pub const SIOCSIWMLME: c_ulong = 0x8B16; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3035:26 | 3035 | pub const SIOCSIWAUTH: ::c_ulong = 0x8B32; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3035 - pub const SIOCSIWAUTH: ::c_ulong = 0x8B32; 3035 + pub const SIOCSIWAUTH: c_ulong = 0x8B32; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3036:26 | 3036 | pub const SIOCGIWAUTH: ::c_ulong = 0x8B33; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3036 - pub const SIOCGIWAUTH: ::c_ulong = 0x8B33; 3036 + pub const SIOCGIWAUTH: c_ulong = 0x8B33; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3038:31 | 3038 | pub const SIOCSIWENCODEEXT: ::c_ulong = 0x8B34; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3038 - pub const SIOCSIWENCODEEXT: ::c_ulong = 0x8B34; 3038 + pub const SIOCSIWENCODEEXT: c_ulong = 0x8B34; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3039:31 | 3039 | pub const SIOCGIWENCODEEXT: ::c_ulong = 0x8B35; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3039 - pub const SIOCGIWENCODEEXT: ::c_ulong = 0x8B35; 3039 + pub const SIOCGIWENCODEEXT: c_ulong = 0x8B35; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3041:27 | 3041 | pub const SIOCSIWPMKSA: ::c_ulong = 0x8B36; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3041 - pub const SIOCSIWPMKSA: ::c_ulong = 0x8B36; 3041 + pub const SIOCSIWPMKSA: c_ulong = 0x8B36; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3043:30 | 3043 | pub const SIOCIWFIRSTPRIV: ::c_ulong = 0x8BE0; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3043 - pub const SIOCIWFIRSTPRIV: ::c_ulong = 0x8BE0; 3043 + pub const SIOCIWFIRSTPRIV: c_ulong = 0x8BE0; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3044:29 | 3044 | pub const SIOCIWLASTPRIV: ::c_ulong = 0x8BFF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3044 - pub const SIOCIWLASTPRIV: ::c_ulong = 0x8BFF; 3044 + pub const SIOCIWLASTPRIV: c_ulong = 0x8BFF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3046:26 | 3046 | pub const SIOCIWFIRST: ::c_ulong = 0x8B00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3046 - pub const SIOCIWFIRST: ::c_ulong = 0x8B00; 3046 + pub const SIOCIWFIRST: c_ulong = 0x8B00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3047:25 | 3047 | pub const SIOCIWLAST: ::c_ulong = SIOCIWLASTPRIV; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3047 - pub const SIOCIWLAST: ::c_ulong = SIOCIWLASTPRIV; 3047 + pub const SIOCIWLAST: c_ulong = SIOCIWLASTPRIV; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3049:25 | 3049 | pub const IWEVTXDROP: ::c_ulong = 0x8C00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3049 - pub const IWEVTXDROP: ::c_ulong = 0x8C00; 3049 + pub const IWEVTXDROP: c_ulong = 0x8C00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3050:23 | 3050 | pub const IWEVQUAL: ::c_ulong = 0x8C01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3050 - pub const IWEVQUAL: ::c_ulong = 0x8C01; 3050 + pub const IWEVQUAL: c_ulong = 0x8C01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3051:25 | 3051 | pub const IWEVCUSTOM: ::c_ulong = 0x8C02; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3051 - pub const IWEVCUSTOM: ::c_ulong = 0x8C02; 3051 + pub const IWEVCUSTOM: c_ulong = 0x8C02; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3052:29 | 3052 | pub const IWEVREGISTERED: ::c_ulong = 0x8C03; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3052 - pub const IWEVREGISTERED: ::c_ulong = 0x8C03; 3052 + pub const IWEVREGISTERED: c_ulong = 0x8C03; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3053:26 | 3053 | pub const IWEVEXPIRED: ::c_ulong = 0x8C04; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3053 - pub const IWEVEXPIRED: ::c_ulong = 0x8C04; 3053 + pub const IWEVEXPIRED: c_ulong = 0x8C04; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3054:24 | 3054 | pub const IWEVGENIE: ::c_ulong = 0x8C05; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3054 - pub const IWEVGENIE: ::c_ulong = 0x8C05; 3054 + pub const IWEVGENIE: c_ulong = 0x8C05; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3055:36 | 3055 | pub const IWEVMICHAELMICFAILURE: ::c_ulong = 0x8C06; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3055 - pub const IWEVMICHAELMICFAILURE: ::c_ulong = 0x8C06; 3055 + pub const IWEVMICHAELMICFAILURE: c_ulong = 0x8C06; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3056:29 | 3056 | pub const IWEVASSOCREQIE: ::c_ulong = 0x8C07; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3056 - pub const IWEVASSOCREQIE: ::c_ulong = 0x8C07; 3056 + pub const IWEVASSOCREQIE: c_ulong = 0x8C07; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3057:30 | 3057 | pub const IWEVASSOCRESPIE: ::c_ulong = 0x8C08; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3057 - pub const IWEVASSOCRESPIE: ::c_ulong = 0x8C08; 3057 + pub const IWEVASSOCRESPIE: c_ulong = 0x8C08; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3058:28 | 3058 | pub const IWEVPMKIDCAND: ::c_ulong = 0x8C09; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3058 - pub const IWEVPMKIDCAND: ::c_ulong = 0x8C09; 3058 + pub const IWEVPMKIDCAND: c_ulong = 0x8C09; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3059:24 | 3059 | pub const IWEVFIRST: ::c_ulong = 0x8C00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3059 - pub const IWEVFIRST: ::c_ulong = 0x8C00; 3059 + pub const IWEVFIRST: c_ulong = 0x8C00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3061:32 | 3061 | pub const IW_PRIV_TYPE_MASK: ::c_ulong = 0x7000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3061 - pub const IW_PRIV_TYPE_MASK: ::c_ulong = 0x7000; 3061 + pub const IW_PRIV_TYPE_MASK: c_ulong = 0x7000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3062:32 | 3062 | pub const IW_PRIV_TYPE_NONE: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3062 - pub const IW_PRIV_TYPE_NONE: ::c_ulong = 0x0000; 3062 + pub const IW_PRIV_TYPE_NONE: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3063:32 | 3063 | pub const IW_PRIV_TYPE_BYTE: ::c_ulong = 0x1000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3063 - pub const IW_PRIV_TYPE_BYTE: ::c_ulong = 0x1000; 3063 + pub const IW_PRIV_TYPE_BYTE: c_ulong = 0x1000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3064:32 | 3064 | pub const IW_PRIV_TYPE_CHAR: ::c_ulong = 0x2000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3064 - pub const IW_PRIV_TYPE_CHAR: ::c_ulong = 0x2000; 3064 + pub const IW_PRIV_TYPE_CHAR: c_ulong = 0x2000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3065:31 | 3065 | pub const IW_PRIV_TYPE_INT: ::c_ulong = 0x4000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3065 - pub const IW_PRIV_TYPE_INT: ::c_ulong = 0x4000; 3065 + pub const IW_PRIV_TYPE_INT: c_ulong = 0x4000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3066:33 | 3066 | pub const IW_PRIV_TYPE_FLOAT: ::c_ulong = 0x5000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3066 - pub const IW_PRIV_TYPE_FLOAT: ::c_ulong = 0x5000; 3066 + pub const IW_PRIV_TYPE_FLOAT: c_ulong = 0x5000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3067:32 | 3067 | pub const IW_PRIV_TYPE_ADDR: ::c_ulong = 0x6000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3067 - pub const IW_PRIV_TYPE_ADDR: ::c_ulong = 0x6000; 3067 + pub const IW_PRIV_TYPE_ADDR: c_ulong = 0x6000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3069:33 | 3069 | pub const IW_PRIV_SIZE_FIXED: ::c_ulong = 0x0800; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3069 - pub const IW_PRIV_SIZE_FIXED: ::c_ulong = 0x0800; 3069 + pub const IW_PRIV_SIZE_FIXED: c_ulong = 0x0800; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3071:32 | 3071 | pub const IW_PRIV_SIZE_MASK: ::c_ulong = 0x07FF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3071 - pub const IW_PRIV_SIZE_MASK: ::c_ulong = 0x07FF; 3071 + pub const IW_PRIV_SIZE_MASK: c_ulong = 0x07FF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3089:35 | 3089 | pub const IW_QUAL_QUAL_UPDATED: ::c_ulong = 0x01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3089 - pub const IW_QUAL_QUAL_UPDATED: ::c_ulong = 0x01; 3089 + pub const IW_QUAL_QUAL_UPDATED: c_ulong = 0x01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3090:36 | 3090 | pub const IW_QUAL_LEVEL_UPDATED: ::c_ulong = 0x02; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3090 - pub const IW_QUAL_LEVEL_UPDATED: ::c_ulong = 0x02; 3090 + pub const IW_QUAL_LEVEL_UPDATED: c_ulong = 0x02; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3091:36 | 3091 | pub const IW_QUAL_NOISE_UPDATED: ::c_ulong = 0x04; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3091 - pub const IW_QUAL_NOISE_UPDATED: ::c_ulong = 0x04; 3091 + pub const IW_QUAL_NOISE_UPDATED: c_ulong = 0x04; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3092:34 | 3092 | pub const IW_QUAL_ALL_UPDATED: ::c_ulong = 0x07; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3092 - pub const IW_QUAL_ALL_UPDATED: ::c_ulong = 0x07; 3092 + pub const IW_QUAL_ALL_UPDATED: c_ulong = 0x07; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3093:26 | 3093 | pub const IW_QUAL_DBM: ::c_ulong = 0x08; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3093 - pub const IW_QUAL_DBM: ::c_ulong = 0x08; 3093 + pub const IW_QUAL_DBM: c_ulong = 0x08; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3094:35 | 3094 | pub const IW_QUAL_QUAL_INVALID: ::c_ulong = 0x10; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3094 - pub const IW_QUAL_QUAL_INVALID: ::c_ulong = 0x10; 3094 + pub const IW_QUAL_QUAL_INVALID: c_ulong = 0x10; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3095:36 | 3095 | pub const IW_QUAL_LEVEL_INVALID: ::c_ulong = 0x20; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3095 - pub const IW_QUAL_LEVEL_INVALID: ::c_ulong = 0x20; 3095 + pub const IW_QUAL_LEVEL_INVALID: c_ulong = 0x20; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3096:36 | 3096 | pub const IW_QUAL_NOISE_INVALID: ::c_ulong = 0x40; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3096 - pub const IW_QUAL_NOISE_INVALID: ::c_ulong = 0x40; 3096 + pub const IW_QUAL_NOISE_INVALID: c_ulong = 0x40; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3097:27 | 3097 | pub const IW_QUAL_RCPI: ::c_ulong = 0x80; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3097 - pub const IW_QUAL_RCPI: ::c_ulong = 0x80; 3097 + pub const IW_QUAL_RCPI: c_ulong = 0x80; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3098:34 | 3098 | pub const IW_QUAL_ALL_INVALID: ::c_ulong = 0x70; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3098 - pub const IW_QUAL_ALL_INVALID: ::c_ulong = 0x70; 3098 + pub const IW_QUAL_ALL_INVALID: c_ulong = 0x70; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3100:27 | 3100 | pub const IW_FREQ_AUTO: ::c_ulong = 0x00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3100 - pub const IW_FREQ_AUTO: ::c_ulong = 0x00; 3100 + pub const IW_FREQ_AUTO: c_ulong = 0x00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3101:28 | 3101 | pub const IW_FREQ_FIXED: ::c_ulong = 0x01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3101 - pub const IW_FREQ_FIXED: ::c_ulong = 0x01; 3101 + pub const IW_FREQ_FIXED: c_ulong = 0x01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3106:30 | 3106 | pub const IW_ENCODE_INDEX: ::c_ulong = 0x00FF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3106 - pub const IW_ENCODE_INDEX: ::c_ulong = 0x00FF; 3106 + pub const IW_ENCODE_INDEX: c_ulong = 0x00FF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3107:30 | 3107 | pub const IW_ENCODE_FLAGS: ::c_ulong = 0xFF00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3107 - pub const IW_ENCODE_FLAGS: ::c_ulong = 0xFF00; 3107 + pub const IW_ENCODE_FLAGS: c_ulong = 0xFF00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3108:29 | 3108 | pub const IW_ENCODE_MODE: ::c_ulong = 0xF000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3108 - pub const IW_ENCODE_MODE: ::c_ulong = 0xF000; 3108 + pub const IW_ENCODE_MODE: c_ulong = 0xF000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3109:33 | 3109 | pub const IW_ENCODE_DISABLED: ::c_ulong = 0x8000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3109 - pub const IW_ENCODE_DISABLED: ::c_ulong = 0x8000; 3109 + pub const IW_ENCODE_DISABLED: c_ulong = 0x8000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3110:32 | 3110 | pub const IW_ENCODE_ENABLED: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3110 - pub const IW_ENCODE_ENABLED: ::c_ulong = 0x0000; 3110 + pub const IW_ENCODE_ENABLED: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3111:35 | 3111 | pub const IW_ENCODE_RESTRICTED: ::c_ulong = 0x4000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3111 - pub const IW_ENCODE_RESTRICTED: ::c_ulong = 0x4000; 3111 + pub const IW_ENCODE_RESTRICTED: c_ulong = 0x4000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3112:29 | 3112 | pub const IW_ENCODE_OPEN: ::c_ulong = 0x2000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3112 - pub const IW_ENCODE_OPEN: ::c_ulong = 0x2000; 3112 + pub const IW_ENCODE_OPEN: c_ulong = 0x2000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3113:30 | 3113 | pub const IW_ENCODE_NOKEY: ::c_ulong = 0x0800; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3113 - pub const IW_ENCODE_NOKEY: ::c_ulong = 0x0800; 3113 + pub const IW_ENCODE_NOKEY: c_ulong = 0x0800; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3114:29 | 3114 | pub const IW_ENCODE_TEMP: ::c_ulong = 0x0400; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3114 - pub const IW_ENCODE_TEMP: ::c_ulong = 0x0400; 3114 + pub const IW_ENCODE_TEMP: c_ulong = 0x0400; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3116:26 | 3116 | pub const IW_POWER_ON: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3116 - pub const IW_POWER_ON: ::c_ulong = 0x0000; 3116 + pub const IW_POWER_ON: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3117:28 | 3117 | pub const IW_POWER_TYPE: ::c_ulong = 0xF000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3117 - pub const IW_POWER_TYPE: ::c_ulong = 0xF000; 3117 + pub const IW_POWER_TYPE: c_ulong = 0xF000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3118:30 | 3118 | pub const IW_POWER_PERIOD: ::c_ulong = 0x1000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3118 - pub const IW_POWER_PERIOD: ::c_ulong = 0x1000; 3118 + pub const IW_POWER_PERIOD: c_ulong = 0x1000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3119:31 | 3119 | pub const IW_POWER_TIMEOUT: ::c_ulong = 0x2000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3119 - pub const IW_POWER_TIMEOUT: ::c_ulong = 0x2000; 3119 + pub const IW_POWER_TIMEOUT: c_ulong = 0x2000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3120:28 | 3120 | pub const IW_POWER_MODE: ::c_ulong = 0x0F00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3120 - pub const IW_POWER_MODE: ::c_ulong = 0x0F00; 3120 + pub const IW_POWER_MODE: c_ulong = 0x0F00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3121:33 | 3121 | pub const IW_POWER_UNICAST_R: ::c_ulong = 0x0100; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3121 - pub const IW_POWER_UNICAST_R: ::c_ulong = 0x0100; 3121 + pub const IW_POWER_UNICAST_R: c_ulong = 0x0100; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3122:35 | 3122 | pub const IW_POWER_MULTICAST_R: ::c_ulong = 0x0200; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3122 - pub const IW_POWER_MULTICAST_R: ::c_ulong = 0x0200; 3122 + pub const IW_POWER_MULTICAST_R: c_ulong = 0x0200; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3123:29 | 3123 | pub const IW_POWER_ALL_R: ::c_ulong = 0x0300; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3123 - pub const IW_POWER_ALL_R: ::c_ulong = 0x0300; 3123 + pub const IW_POWER_ALL_R: c_ulong = 0x0300; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3124:31 | 3124 | pub const IW_POWER_FORCE_S: ::c_ulong = 0x0400; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3124 - pub const IW_POWER_FORCE_S: ::c_ulong = 0x0400; 3124 + pub const IW_POWER_FORCE_S: c_ulong = 0x0400; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3125:32 | 3125 | pub const IW_POWER_REPEATER: ::c_ulong = 0x0800; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3125 - pub const IW_POWER_REPEATER: ::c_ulong = 0x0800; 3125 + pub const IW_POWER_REPEATER: c_ulong = 0x0800; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3126:32 | 3126 | pub const IW_POWER_MODIFIER: ::c_ulong = 0x000F; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3126 - pub const IW_POWER_MODIFIER: ::c_ulong = 0x000F; 3126 + pub const IW_POWER_MODIFIER: c_ulong = 0x000F; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3127:27 | 3127 | pub const IW_POWER_MIN: ::c_ulong = 0x0001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3127 - pub const IW_POWER_MIN: ::c_ulong = 0x0001; 3127 + pub const IW_POWER_MIN: c_ulong = 0x0001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3128:27 | 3128 | pub const IW_POWER_MAX: ::c_ulong = 0x0002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3128 - pub const IW_POWER_MAX: ::c_ulong = 0x0002; 3128 + pub const IW_POWER_MAX: c_ulong = 0x0002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3129:32 | 3129 | pub const IW_POWER_RELATIVE: ::c_ulong = 0x0004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3129 - pub const IW_POWER_RELATIVE: ::c_ulong = 0x0004; 3129 + pub const IW_POWER_RELATIVE: c_ulong = 0x0004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3131:28 | 3131 | pub const IW_TXPOW_TYPE: ::c_ulong = 0x00FF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3131 - pub const IW_TXPOW_TYPE: ::c_ulong = 0x00FF; 3131 + pub const IW_TXPOW_TYPE: c_ulong = 0x00FF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3132:27 | 3132 | pub const IW_TXPOW_DBM: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3132 - pub const IW_TXPOW_DBM: ::c_ulong = 0x0000; 3132 + pub const IW_TXPOW_DBM: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3133:29 | 3133 | pub const IW_TXPOW_MWATT: ::c_ulong = 0x0001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3133 - pub const IW_TXPOW_MWATT: ::c_ulong = 0x0001; 3133 + pub const IW_TXPOW_MWATT: c_ulong = 0x0001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3134:32 | 3134 | pub const IW_TXPOW_RELATIVE: ::c_ulong = 0x0002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3134 - pub const IW_TXPOW_RELATIVE: ::c_ulong = 0x0002; 3134 + pub const IW_TXPOW_RELATIVE: c_ulong = 0x0002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3135:29 | 3135 | pub const IW_TXPOW_RANGE: ::c_ulong = 0x1000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3135 - pub const IW_TXPOW_RANGE: ::c_ulong = 0x1000; 3135 + pub const IW_TXPOW_RANGE: c_ulong = 0x1000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3137:26 | 3137 | pub const IW_RETRY_ON: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3137 - pub const IW_RETRY_ON: ::c_ulong = 0x0000; 3137 + pub const IW_RETRY_ON: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3138:28 | 3138 | pub const IW_RETRY_TYPE: ::c_ulong = 0xF000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3138 - pub const IW_RETRY_TYPE: ::c_ulong = 0xF000; 3138 + pub const IW_RETRY_TYPE: c_ulong = 0xF000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3139:29 | 3139 | pub const IW_RETRY_LIMIT: ::c_ulong = 0x1000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3139 - pub const IW_RETRY_LIMIT: ::c_ulong = 0x1000; 3139 + pub const IW_RETRY_LIMIT: c_ulong = 0x1000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3140:32 | 3140 | pub const IW_RETRY_LIFETIME: ::c_ulong = 0x2000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3140 - pub const IW_RETRY_LIFETIME: ::c_ulong = 0x2000; 3140 + pub const IW_RETRY_LIFETIME: c_ulong = 0x2000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3141:32 | 3141 | pub const IW_RETRY_MODIFIER: ::c_ulong = 0x00FF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3141 - pub const IW_RETRY_MODIFIER: ::c_ulong = 0x00FF; 3141 + pub const IW_RETRY_MODIFIER: c_ulong = 0x00FF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3142:27 | 3142 | pub const IW_RETRY_MIN: ::c_ulong = 0x0001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3142 - pub const IW_RETRY_MIN: ::c_ulong = 0x0001; 3142 + pub const IW_RETRY_MIN: c_ulong = 0x0001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3143:27 | 3143 | pub const IW_RETRY_MAX: ::c_ulong = 0x0002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3143 - pub const IW_RETRY_MAX: ::c_ulong = 0x0002; 3143 + pub const IW_RETRY_MAX: c_ulong = 0x0002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3144:32 | 3144 | pub const IW_RETRY_RELATIVE: ::c_ulong = 0x0004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3144 - pub const IW_RETRY_RELATIVE: ::c_ulong = 0x0004; 3144 + pub const IW_RETRY_RELATIVE: c_ulong = 0x0004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3145:29 | 3145 | pub const IW_RETRY_SHORT: ::c_ulong = 0x0010; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3145 - pub const IW_RETRY_SHORT: ::c_ulong = 0x0010; 3145 + pub const IW_RETRY_SHORT: c_ulong = 0x0010; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3146:28 | 3146 | pub const IW_RETRY_LONG: ::c_ulong = 0x0020; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3146 - pub const IW_RETRY_LONG: ::c_ulong = 0x0020; 3146 + pub const IW_RETRY_LONG: c_ulong = 0x0020; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3148:30 | 3148 | pub const IW_SCAN_DEFAULT: ::c_ulong = 0x0000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3148 - pub const IW_SCAN_DEFAULT: ::c_ulong = 0x0000; 3148 + pub const IW_SCAN_DEFAULT: c_ulong = 0x0000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3149:32 | 3149 | pub const IW_SCAN_ALL_ESSID: ::c_ulong = 0x0001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3149 - pub const IW_SCAN_ALL_ESSID: ::c_ulong = 0x0001; 3149 + pub const IW_SCAN_ALL_ESSID: c_ulong = 0x0001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3150:33 | 3150 | pub const IW_SCAN_THIS_ESSID: ::c_ulong = 0x0002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3150 - pub const IW_SCAN_THIS_ESSID: ::c_ulong = 0x0002; 3150 + pub const IW_SCAN_THIS_ESSID: c_ulong = 0x0002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3151:31 | 3151 | pub const IW_SCAN_ALL_FREQ: ::c_ulong = 0x0004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3151 - pub const IW_SCAN_ALL_FREQ: ::c_ulong = 0x0004; 3151 + pub const IW_SCAN_ALL_FREQ: c_ulong = 0x0004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3152:32 | 3152 | pub const IW_SCAN_THIS_FREQ: ::c_ulong = 0x0008; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3152 - pub const IW_SCAN_THIS_FREQ: ::c_ulong = 0x0008; 3152 + pub const IW_SCAN_THIS_FREQ: c_ulong = 0x0008; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3153:31 | 3153 | pub const IW_SCAN_ALL_MODE: ::c_ulong = 0x0010; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3153 - pub const IW_SCAN_ALL_MODE: ::c_ulong = 0x0010; 3153 + pub const IW_SCAN_ALL_MODE: c_ulong = 0x0010; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3154:32 | 3154 | pub const IW_SCAN_THIS_MODE: ::c_ulong = 0x0020; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3154 - pub const IW_SCAN_THIS_MODE: ::c_ulong = 0x0020; 3154 + pub const IW_SCAN_THIS_MODE: c_ulong = 0x0020; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3155:31 | 3155 | pub const IW_SCAN_ALL_RATE: ::c_ulong = 0x0040; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3155 - pub const IW_SCAN_ALL_RATE: ::c_ulong = 0x0040; 3155 + pub const IW_SCAN_ALL_RATE: c_ulong = 0x0040; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3156:32 | 3156 | pub const IW_SCAN_THIS_RATE: ::c_ulong = 0x0080; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3156 - pub const IW_SCAN_THIS_RATE: ::c_ulong = 0x0080; 3156 + pub const IW_SCAN_THIS_RATE: c_ulong = 0x0080; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3163:32 | 3163 | pub const IW_SCAN_CAPA_NONE: ::c_ulong = 0x00; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3163 - pub const IW_SCAN_CAPA_NONE: ::c_ulong = 0x00; 3163 + pub const IW_SCAN_CAPA_NONE: c_ulong = 0x00; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3164:33 | 3164 | pub const IW_SCAN_CAPA_ESSID: ::c_ulong = 0x01; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3164 - pub const IW_SCAN_CAPA_ESSID: ::c_ulong = 0x01; 3164 + pub const IW_SCAN_CAPA_ESSID: c_ulong = 0x01; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3165:33 | 3165 | pub const IW_SCAN_CAPA_BSSID: ::c_ulong = 0x02; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3165 - pub const IW_SCAN_CAPA_BSSID: ::c_ulong = 0x02; 3165 + pub const IW_SCAN_CAPA_BSSID: c_ulong = 0x02; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3166:35 | 3166 | pub const IW_SCAN_CAPA_CHANNEL: ::c_ulong = 0x04; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3166 - pub const IW_SCAN_CAPA_CHANNEL: ::c_ulong = 0x04; 3166 + pub const IW_SCAN_CAPA_CHANNEL: c_ulong = 0x04; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3167:32 | 3167 | pub const IW_SCAN_CAPA_MODE: ::c_ulong = 0x08; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3167 - pub const IW_SCAN_CAPA_MODE: ::c_ulong = 0x08; 3167 + pub const IW_SCAN_CAPA_MODE: c_ulong = 0x08; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3168:32 | 3168 | pub const IW_SCAN_CAPA_RATE: ::c_ulong = 0x10; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3168 - pub const IW_SCAN_CAPA_RATE: ::c_ulong = 0x10; 3168 + pub const IW_SCAN_CAPA_RATE: c_ulong = 0x10; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3169:32 | 3169 | pub const IW_SCAN_CAPA_TYPE: ::c_ulong = 0x20; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3169 - pub const IW_SCAN_CAPA_TYPE: ::c_ulong = 0x20; 3169 + pub const IW_SCAN_CAPA_TYPE: c_ulong = 0x20; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3170:32 | 3170 | pub const IW_SCAN_CAPA_TIME: ::c_ulong = 0x40; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3170 - pub const IW_SCAN_CAPA_TIME: ::c_ulong = 0x40; 3170 + pub const IW_SCAN_CAPA_TIME: c_ulong = 0x40; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3172:28 | 3172 | pub const IW_CUSTOM_MAX: ::c_ulong = 256; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3172 - pub const IW_CUSTOM_MAX: ::c_ulong = 256; 3172 + pub const IW_CUSTOM_MAX: c_ulong = 256; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3174:32 | 3174 | pub const IW_GENERIC_IE_MAX: ::c_ulong = 1024; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3174 - pub const IW_GENERIC_IE_MAX: ::c_ulong = 1024; 3174 + pub const IW_GENERIC_IE_MAX: c_ulong = 1024; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3176:29 | 3176 | pub const IW_MLME_DEAUTH: ::c_ulong = 0; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3176 - pub const IW_MLME_DEAUTH: ::c_ulong = 0; 3176 + pub const IW_MLME_DEAUTH: c_ulong = 0; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3177:31 | 3177 | pub const IW_MLME_DISASSOC: ::c_ulong = 1; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3177 - pub const IW_MLME_DISASSOC: ::c_ulong = 1; 3177 + pub const IW_MLME_DISASSOC: c_ulong = 1; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3178:27 | 3178 | pub const IW_MLME_AUTH: ::c_ulong = 2; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3178 - pub const IW_MLME_AUTH: ::c_ulong = 2; 3178 + pub const IW_MLME_AUTH: c_ulong = 2; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3179:28 | 3179 | pub const IW_MLME_ASSOC: ::c_ulong = 3; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3179 - pub const IW_MLME_ASSOC: ::c_ulong = 3; 3179 + pub const IW_MLME_ASSOC: c_ulong = 3; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3181:28 | 3181 | pub const IW_AUTH_INDEX: ::c_ulong = 0x0FFF; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3181 - pub const IW_AUTH_INDEX: ::c_ulong = 0x0FFF; 3181 + pub const IW_AUTH_INDEX: c_ulong = 0x0FFF; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3182:28 | 3182 | pub const IW_AUTH_FLAGS: ::c_ulong = 0xF000; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3182 - pub const IW_AUTH_FLAGS: ::c_ulong = 0xF000; 3182 + pub const IW_AUTH_FLAGS: c_ulong = 0xF000; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3198:43 | 3198 | pub const IW_AUTH_WPA_VERSION_DISABLED: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3198 - pub const IW_AUTH_WPA_VERSION_DISABLED: ::c_ulong = 0x00000001; 3198 + pub const IW_AUTH_WPA_VERSION_DISABLED: c_ulong = 0x00000001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3199:38 | 3199 | pub const IW_AUTH_WPA_VERSION_WPA: ::c_ulong = 0x00000002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3199 - pub const IW_AUTH_WPA_VERSION_WPA: ::c_ulong = 0x00000002; 3199 + pub const IW_AUTH_WPA_VERSION_WPA: c_ulong = 0x00000002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3200:39 | 3200 | pub const IW_AUTH_WPA_VERSION_WPA2: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3200 - pub const IW_AUTH_WPA_VERSION_WPA2: ::c_ulong = 0x00000004; 3200 + pub const IW_AUTH_WPA_VERSION_WPA2: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3202:34 | 3202 | pub const IW_AUTH_CIPHER_NONE: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3202 - pub const IW_AUTH_CIPHER_NONE: ::c_ulong = 0x00000001; 3202 + pub const IW_AUTH_CIPHER_NONE: c_ulong = 0x00000001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3203:35 | 3203 | pub const IW_AUTH_CIPHER_WEP40: ::c_ulong = 0x00000002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3203 - pub const IW_AUTH_CIPHER_WEP40: ::c_ulong = 0x00000002; 3203 + pub const IW_AUTH_CIPHER_WEP40: c_ulong = 0x00000002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3204:34 | 3204 | pub const IW_AUTH_CIPHER_TKIP: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3204 - pub const IW_AUTH_CIPHER_TKIP: ::c_ulong = 0x00000004; 3204 + pub const IW_AUTH_CIPHER_TKIP: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3205:34 | 3205 | pub const IW_AUTH_CIPHER_CCMP: ::c_ulong = 0x00000008; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3205 - pub const IW_AUTH_CIPHER_CCMP: ::c_ulong = 0x00000008; 3205 + pub const IW_AUTH_CIPHER_CCMP: c_ulong = 0x00000008; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3206:36 | 3206 | pub const IW_AUTH_CIPHER_WEP104: ::c_ulong = 0x00000010; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3206 - pub const IW_AUTH_CIPHER_WEP104: ::c_ulong = 0x00000010; 3206 + pub const IW_AUTH_CIPHER_WEP104: c_ulong = 0x00000010; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3207:38 | 3207 | pub const IW_AUTH_CIPHER_AES_CMAC: ::c_ulong = 0x00000020; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3207 - pub const IW_AUTH_CIPHER_AES_CMAC: ::c_ulong = 0x00000020; 3207 + pub const IW_AUTH_CIPHER_AES_CMAC: c_ulong = 0x00000020; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3212:38 | 3212 | pub const IW_AUTH_ALG_OPEN_SYSTEM: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3212 - pub const IW_AUTH_ALG_OPEN_SYSTEM: ::c_ulong = 0x00000001; 3212 + pub const IW_AUTH_ALG_OPEN_SYSTEM: c_ulong = 0x00000001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3213:37 | 3213 | pub const IW_AUTH_ALG_SHARED_KEY: ::c_ulong = 0x00000002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3213 - pub const IW_AUTH_ALG_SHARED_KEY: ::c_ulong = 0x00000002; 3213 + pub const IW_AUTH_ALG_SHARED_KEY: c_ulong = 0x00000002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3214:31 | 3214 | pub const IW_AUTH_ALG_LEAP: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3214 - pub const IW_AUTH_ALG_LEAP: ::c_ulong = 0x00000004; 3214 + pub const IW_AUTH_ALG_LEAP: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3232:41 | 3232 | pub const IW_ENCODE_EXT_TX_SEQ_VALID: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3232 - pub const IW_ENCODE_EXT_TX_SEQ_VALID: ::c_ulong = 0x00000001; 3232 + pub const IW_ENCODE_EXT_TX_SEQ_VALID: c_ulong = 0x00000001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3233:41 | 3233 | pub const IW_ENCODE_EXT_RX_SEQ_VALID: ::c_ulong = 0x00000002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3233 - pub const IW_ENCODE_EXT_RX_SEQ_VALID: ::c_ulong = 0x00000002; 3233 + pub const IW_ENCODE_EXT_RX_SEQ_VALID: c_ulong = 0x00000002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3234:38 | 3234 | pub const IW_ENCODE_EXT_GROUP_KEY: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3234 - pub const IW_ENCODE_EXT_GROUP_KEY: ::c_ulong = 0x00000004; 3234 + pub const IW_ENCODE_EXT_GROUP_KEY: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3235:39 | 3235 | pub const IW_ENCODE_EXT_SET_TX_KEY: ::c_ulong = 0x00000008; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3235 - pub const IW_ENCODE_EXT_SET_TX_KEY: ::c_ulong = 0x00000008; 3235 + pub const IW_ENCODE_EXT_SET_TX_KEY: c_ulong = 0x00000008; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3237:35 | 3237 | pub const IW_MICFAILURE_KEY_ID: ::c_ulong = 0x00000003; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3237 - pub const IW_MICFAILURE_KEY_ID: ::c_ulong = 0x00000003; 3237 + pub const IW_MICFAILURE_KEY_ID: c_ulong = 0x00000003; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3238:34 | 3238 | pub const IW_MICFAILURE_GROUP: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3238 - pub const IW_MICFAILURE_GROUP: ::c_ulong = 0x00000004; 3238 + pub const IW_MICFAILURE_GROUP: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3239:37 | 3239 | pub const IW_MICFAILURE_PAIRWISE: ::c_ulong = 0x00000008; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3239 - pub const IW_MICFAILURE_PAIRWISE: ::c_ulong = 0x00000008; 3239 + pub const IW_MICFAILURE_PAIRWISE: c_ulong = 0x00000008; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3240:35 | 3240 | pub const IW_MICFAILURE_STAKEY: ::c_ulong = 0x00000010; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3240 - pub const IW_MICFAILURE_STAKEY: ::c_ulong = 0x00000010; 3240 + pub const IW_MICFAILURE_STAKEY: c_ulong = 0x00000010; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3241:34 | 3241 | pub const IW_MICFAILURE_COUNT: ::c_ulong = 0x00000060; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3241 - pub const IW_MICFAILURE_COUNT: ::c_ulong = 0x00000060; 3241 + pub const IW_MICFAILURE_COUNT: c_ulong = 0x00000060; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3243:30 | 3243 | pub const IW_ENC_CAPA_WPA: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3243 - pub const IW_ENC_CAPA_WPA: ::c_ulong = 0x00000001; 3243 + pub const IW_ENC_CAPA_WPA: c_ulong = 0x00000001; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3244:31 | 3244 | pub const IW_ENC_CAPA_WPA2: ::c_ulong = 0x00000002; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3244 - pub const IW_ENC_CAPA_WPA2: ::c_ulong = 0x00000002; 3244 + pub const IW_ENC_CAPA_WPA2: c_ulong = 0x00000002; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3245:38 | 3245 | pub const IW_ENC_CAPA_CIPHER_TKIP: ::c_ulong = 0x00000004; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3245 - pub const IW_ENC_CAPA_CIPHER_TKIP: ::c_ulong = 0x00000004; 3245 + pub const IW_ENC_CAPA_CIPHER_TKIP: c_ulong = 0x00000004; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3246:38 | 3246 | pub const IW_ENC_CAPA_CIPHER_CCMP: ::c_ulong = 0x00000008; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3246 - pub const IW_ENC_CAPA_CIPHER_CCMP: ::c_ulong = 0x00000008; 3246 + pub const IW_ENC_CAPA_CIPHER_CCMP: c_ulong = 0x00000008; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3247:41 | 3247 | pub const IW_ENC_CAPA_4WAY_HANDSHAKE: ::c_ulong = 0x00000010; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3247 - pub const IW_ENC_CAPA_4WAY_HANDSHAKE: ::c_ulong = 0x00000010; 3247 + pub const IW_ENC_CAPA_4WAY_HANDSHAKE: c_ulong = 0x00000010; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3255:36 | 3255 | pub const IW_PMKID_CAND_PREAUTH: ::c_ulong = 0x00000001; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 3255 - pub const IW_PMKID_CAND_PREAUTH: ::c_ulong = 0x00000001; 3255 + pub const IW_PMKID_CAND_PREAUTH: c_ulong = 0x00000001; | error[E0425]: cannot find value `O_NONBLOCK` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3817:34 | 3817 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK; | ^^^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4340:28 | 4340 | pub const J1939_NO_NAME: ::c_ulong = 0; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4340 - pub const J1939_NO_NAME: ::c_ulong = 0; 4340 + pub const J1939_NO_NAME: c_ulong = 0; | error[E0412]: cannot find type `msghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4669:37 | 4669 | pub fn CMSG_NXTHDR(mhdr: *const msghdr, | ^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4670:37 | 4670 | cmsg: *const cmsghdr) -> *mut cmsghdr { | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4670:54 | 4670 | cmsg: *const cmsghdr) -> *mut cmsghdr { | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4671:59 | 4671 | if ((*cmsg).cmsg_len as usize) < ::mem::size_of::() { | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4672:30 | 4672 | return 0 as *mut cmsghdr; | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4676:21 | 4676 | as *mut cmsghdr; | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4682:23 | 4682 | 0 as *mut cmsghdr | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `cmsghdr` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4684:26 | 4684 | next as *mut cmsghdr | ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `nlmsghdr` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4875:30 | 4875 | host: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4875 | host: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4875 - host: *mut ::c_char, 4875 + host: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4877:30 | 4877 | serv: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4877 | serv: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4877 - serv: *mut ::c_char, 4877 + serv: *mut c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4888:28 | 4888 | liovcnt: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4888 - liovcnt: ::c_ulong, 4888 + liovcnt: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4890:28 | 4890 | riovcnt: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4890 - riovcnt: ::c_ulong, 4890 + riovcnt: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4891:26 | 4891 | flags: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4891 - flags: ::c_ulong, 4891 + flags: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4896:28 | 4896 | liovcnt: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4896 - liovcnt: ::c_ulong, 4896 + liovcnt: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4898:28 | 4898 | riovcnt: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4898 - riovcnt: ::c_ulong, 4898 + riovcnt: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4899:26 | 4899 | flags: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 4899 - flags: ::c_ulong, 4899 + flags: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4917:32 | 4917 | name: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4917 | name: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4917 - name: *const ::c_char, 4917 + name: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4919:29 | 4919 | buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4919 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4919 - buf: *mut ::c_char, 4919 + buf: *mut c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4924:42 | 4924 | pub fn shm_open(name: *const c_char, oflag: ::c_int, mode: mode_t) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 4924 | pub fn shm_open(name: *const char, oflag: ::c_int, mode: mode_t) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4925:46 | 4925 | pub fn shm_unlink(name: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4925 | pub fn shm_unlink(name: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4925 - pub fn shm_unlink(name: *const ::c_char) -> ::c_int; 4925 + pub fn shm_unlink(name: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4927:43 | 4927 | pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4927 | pub fn mq_open(name: *const ::c_schar, oflag: ::c_int, ...) -> ::mqd_t; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4927 - pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t; 4927 + pub fn mq_open(name: *const c_char, oflag: ::c_int, ...) -> ::mqd_t; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4929:45 | 4929 | pub fn mq_unlink(name: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4929 | pub fn mq_unlink(name: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4929 - pub fn mq_unlink(name: *const ::c_char) -> ::c_int; 4929 + pub fn mq_unlink(name: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4932:33 | 4932 | msg_ptr: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4932 | msg_ptr: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4932 - msg_ptr: *mut ::c_char, 4932 + msg_ptr: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4938:33 | 4938 | msg_ptr: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4938 | msg_ptr: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4938 - msg_ptr: *mut ::c_char, 4938 + msg_ptr: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4945:35 | 4945 | msg_ptr: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4945 | msg_ptr: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4945 - msg_ptr: *const ::c_char, 4945 + msg_ptr: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4951:35 | 4951 | msg_ptr: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4951 | msg_ptr: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4951 - msg_ptr: *const ::c_char, 4951 + msg_ptr: *const c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4982:50 | 4982 | pub fn strerror_r(errnum: ::c_int, buf: *mut c_char, buflen: ::size_t) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 4982 | pub fn strerror_r(errnum: ::c_int, buf: *mut char, buflen: ::size_t) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4985:22 | 4985 | pub fn labs(i: ::c_long) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4985 - pub fn labs(i: ::c_long) -> ::c_long; 4985 + pub fn labs(i: c_long) -> ::c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4985:35 | 4985 | pub fn labs(i: ::c_long) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4985 - pub fn labs(i: ::c_long) -> ::c_long; 4985 + pub fn labs(i: ::c_long) -> c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4991:27 | 4991 | pub fn lrand48() -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4991 - pub fn lrand48() -> ::c_long; 4991 + pub fn lrand48() -> c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4992:49 | 4992 | pub fn nrand48(xseed: *mut ::c_ushort) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4992 - pub fn nrand48(xseed: *mut ::c_ushort) -> ::c_long; 4992 + pub fn nrand48(xseed: *mut ::c_ushort) -> c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4993:27 | 4993 | pub fn mrand48() -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4993 - pub fn mrand48() -> ::c_long; 4993 + pub fn mrand48() -> c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4994:49 | 4994 | pub fn jrand48(xseed: *mut ::c_ushort) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4994 - pub fn jrand48(xseed: *mut ::c_ushort) -> ::c_long; 4994 + pub fn jrand48(xseed: *mut ::c_ushort) -> c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4995:28 | 4995 | pub fn srand48(seed: ::c_long); | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 4995 - pub fn srand48(seed: ::c_long); 4995 + pub fn srand48(seed: c_long); | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:4999:35 | 4999 | pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 4999 | pub fn lutimes(file: *const ::c_schar, times: *const ::timeval) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 4999 - pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int; 4999 + pub fn lutimes(file: *const c_char, times: *const ::timeval) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5011:36 | 5011 | pub fn getspnam(name: *const ::c_char) -> *mut spwd; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5011 | pub fn getspnam(name: *const ::c_schar) -> *mut spwd; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5011 - pub fn getspnam(name: *const ::c_char) -> *mut spwd; 5011 + pub fn getspnam(name: *const c_char) -> *mut spwd; | error[E0412]: cannot find type `shmid_ds` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5017:61 | 5017 | pub fn shmctl(shmid: ::c_int, cmd: ::c_int, buf: *mut ::shmid_ds) -> ::c_int; | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5018:36 | 5018 | pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5018 | pub fn ftok(pathname: *const ::c_schar, proj_id: ::c_int) -> ::key_t; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5018 - pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t; 5018 + pub fn ftok(pathname: *const c_char, proj_id: ::c_int) -> ::key_t; | error[E0412]: cannot find type `msqid_ds` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5022:59 | 5022 | pub fn msgctl(msqid: ::c_int, cmd: ::c_int, buf: *mut msqid_ds) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5028:19 | 5028 | msgtyp: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5028 - msgtyp: ::c_long, 5028 + msgtyp: c_long, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5045:22 | 5045 | path: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5045 | path: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5046:22 | 5046 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5046 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5051:22 | 5051 | path: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5051 | path: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5052:22 | 5052 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5052 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5058:22 | 5058 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5058 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5063:22 | 5063 | path: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5063 | path: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5064:22 | 5064 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5064 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5070:22 | 5070 | path: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5070 | path: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5071:22 | 5071 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5071 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5078:22 | 5078 | name: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5078 | name: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5083:35 | 5083 | pub fn listxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a builtin type with a similar name exists | 5083 | pub fn listxattr(path: *const char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5083:54 | 5083 | pub fn listxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a builtin type with a similar name exists | 5083 | pub fn listxattr(path: *const c_char, list: *mut char, size: ::size_t) -> ::ssize_t; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5084:36 | 5084 | pub fn llistxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a builtin type with a similar name exists | 5084 | pub fn llistxattr(path: *const char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5084:55 | 5084 | pub fn llistxattr(path: *const c_char, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a builtin type with a similar name exists | 5084 | pub fn llistxattr(path: *const c_char, list: *mut char, size: ::size_t) -> ::ssize_t; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5085:52 | 5085 | pub fn flistxattr(filedes: ::c_int, list: *mut c_char, size: ::size_t) -> ::ssize_t; | ^^^^^^ | help: a builtin type with a similar name exists | 5085 | pub fn flistxattr(filedes: ::c_int, list: *mut char, size: ::size_t) -> ::ssize_t; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5086:37 | 5086 | pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 5086 | pub fn removexattr(path: *const char, name: *const c_char) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5086:58 | 5086 | pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 5086 | pub fn removexattr(path: *const c_char, name: *const char) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5087:38 | 5087 | pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 5087 | pub fn lremovexattr(path: *const char, name: *const c_char) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5087:59 | 5087 | pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 5087 | pub fn lremovexattr(path: *const c_char, name: *const char) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5088:56 | 5088 | pub fn fremovexattr(filedes: ::c_int, name: *const c_char) -> ::c_int; | ^^^^^^ | help: a builtin type with a similar name exists | 5088 | pub fn fremovexattr(filedes: ::c_int, name: *const char) -> ::c_int; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5089:49 | 5089 | pub fn signalfd(fd: ::c_int, mask: *const ::sigset_t, flags: ::c_int) -> ::c_int; | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5100:27 | 5100 | special: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5100 | special: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5100 - special: *const ::c_char, 5100 + special: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5102:22 | 5102 | data: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5102 | data: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5102 - data: *mut ::c_char, 5102 + data: *mut c_char, | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5109:27 | 5109 | sigmask: *const ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5112:38 | 5112 | pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5112 | pub fn mkostemp(template: *mut ::c_schar, flags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5112 - pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int; 5112 + pub fn mkostemp(template: *mut c_char, flags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5113:39 | 5113 | pub fn mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5113 | pub fn mkostemps(template: *mut ::c_schar, suffixlen: ::c_int, flags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5113 - pub fn mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int; 5113 + pub fn mkostemps(template: *mut c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5115:21 | 5115 | set: *const sigset_t, | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5116:20 | 5116 | info: *mut siginfo_t, | ^^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5119:36 | 5119 | pub fn sigwaitinfo(set: *const sigset_t, info: *mut siginfo_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5119:57 | 5119 | pub fn sigwaitinfo(set: *const sigset_t, info: *mut siginfo_t) -> ::c_int; | ^^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5120:73 | 5120 | pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5120 | pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5120 - pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char; 5120 + pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5143:56 | 5143 | pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5143 | pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_schar, mode: ::mode_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5143 - pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int; 5143 + pub fn mkfifoat(dirfd: ::c_int, pathname: *const c_char, mode: ::mode_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5161:25 | 5161 | pattern: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5161 | pattern: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5163:55 | 5163 | errfunc: ::Option ::c_int>, | ^^^^^^ | help: a builtin type with a similar name exists | 5163 | errfunc: ::Option ::c_int>, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5170:45 | 5170 | pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long); | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5170 - pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long); 5170 + pub fn seekdir(dirp: *mut ::DIR, loc: c_long); | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5172:43 | 5172 | pub fn telldir(dirp: *mut ::DIR) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5172 - pub fn telldir(dirp: *mut ::DIR) -> ::c_long; 5172 + pub fn telldir(dirp: *mut ::DIR) -> c_long; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5191:38 | 5191 | pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5191 | pub fn mkstemps(template: *mut ::c_schar, suffixlen: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5191 - pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int; 5191 + pub fn mkstemps(template: *mut c_char, suffixlen: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5193:51 | 5193 | pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5193 | pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5193 - pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char; 5193 + pub fn nl_langinfo(item: ::nl_item) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5195:39 | 5195 | pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5195 | pub fn getdomainname(name: *mut ::c_schar, len: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5195 - pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int; 5195 + pub fn getdomainname(name: *mut c_char, len: ::size_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5196:41 | 5196 | pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5196 | pub fn setdomainname(name: *const ::c_schar, len: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5196 - pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int; 5196 + pub fn setdomainname(name: *const c_char, len: ::size_t) -> ::c_int; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5200:27 | 5200 | pub fn syscall(num: ::c_long, ...) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5200 - pub fn syscall(num: ::c_long, ...) -> ::c_long; 5200 + pub fn syscall(num: c_long, ...) -> ::c_long; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5200:45 | 5200 | pub fn syscall(num: ::c_long, ...) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5200 - pub fn syscall(num: ::c_long, ...) -> ::c_long; 5200 + pub fn syscall(num: ::c_long, ...) -> c_long; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5224:36 | 5224 | pub fn umount(target: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5224 | pub fn umount(target: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5224 - pub fn umount(target: *const ::c_char) -> ::c_int; 5224 + pub fn umount(target: *const c_char) -> ::c_int; | error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5241:36 | 5241 | pub fn sem_timedwait(sem: *mut sem_t, abstime: *const ::timespec) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5242:35 | 5242 | pub fn sem_getvalue(sem: *mut sem_t, sval: *mut ::c_int) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5245:35 | 5245 | pub fn swapoff(path: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5245 | pub fn swapoff(path: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5245 - pub fn swapoff(path: *const ::c_char) -> ::c_int; 5245 + pub fn swapoff(path: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5253:23 | 5253 | src: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5253 | src: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5253 - src: *const ::c_char, 5253 + src: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5254:26 | 5254 | target: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5254 | target: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5254 - target: *const ::c_char, 5254 + target: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5255:26 | 5255 | fstype: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5255 | fstype: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5255 - fstype: *const ::c_char, 5255 + fstype: *const c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5256:18 | 5256 | flags: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 5256 - flags: ::c_ulong, 5256 + flags: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5259:35 | 5259 | pub fn personality(persona: ::c_ulong) -> ::c_int; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 5259 - pub fn personality(persona: ::c_ulong) -> ::c_int; 5259 + pub fn personality(persona: c_ulong) -> ::c_int; | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5266:25 | 5266 | sigmask: *const sigset_t, | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5318:24 | 5318 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5321:51 | 5321 | pub fn pthread_attr_setguardsize(attr: *mut ::pthread_attr_t, guardsize: ::size_t) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5323:24 | 5323 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5327:22 | 5327 | attr: *mut ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5331:24 | 5331 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5334:53 | 5334 | pub fn pthread_attr_setschedpolicy(attr: *mut ::pthread_attr_t, policy: ::c_int) -> ::c_int; | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5336:24 | 5336 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5340:22 | 5340 | attr: *mut ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5343:39 | 5343 | pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5343 | pub fn sethostname(name: *const ::c_schar, len: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5343 - pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int; 5343 + pub fn sethostname(name: *const c_char, len: ::size_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5350:37 | 5350 | pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5350 | pub fn umount2(target: *const ::c_schar, flags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5350 - pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int; 5350 + pub fn umount2(target: *const c_char, flags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5356:34 | 5356 | pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5356 | pub fn swapon(path: *const ::c_schar, swapflags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5356 - pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int; 5356 + pub fn swapon(path: *const c_char, swapflags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5368:38 | 5368 | pub fn sigsuspend(mask: *const ::sigset_t) -> ::c_int; | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5372:21 | 5372 | buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5372 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5372 - buf: *mut ::c_char, 5372 + buf: *mut c_char, | error[E0412]: cannot find type `stack_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5376:35 | 5376 | pub fn sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> ::c_int; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `stack_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5376:54 | 5376 | pub fn sigaltstack(ss: *const stack_t, oss: *mut stack_t) -> ::c_int; | ^^^^^^^ not found in this scope error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5377:32 | 5377 | pub fn sem_close(sem: *mut sem_t) -> ::c_int; | ^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5380:24 | 5380 | name: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5380 | name: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5380 - name: *const ::c_char, 5380 + name: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5382:21 | 5382 | buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5382 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5382 - buf: *mut ::c_char, 5382 + buf: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5386:38 | 5386 | pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5386 | pub fn initgroups(user: *const ::c_schar, group: ::gid_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5386 - pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int; 5386 + pub fn initgroups(user: *const c_char, group: ::gid_t) -> ::c_int; | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5387:54 | 5387 | pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5387:77 | 5387 | pub fn pthread_sigmask(how: ::c_int, set: *const sigset_t, oldset: *mut sigset_t) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5388:36 | 5388 | pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5388 | pub fn sem_open(name: *const ::c_schar, oflag: ::c_int, ...) -> *mut sem_t; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5388 - pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t; 5388 + pub fn sem_open(name: *const c_char, oflag: ::c_int, ...) -> *mut sem_t; | error[E0412]: cannot find type `sem_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5388:73 | 5388 | pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t; | ^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5389:36 | 5389 | pub fn getgrnam(name: *const ::c_char) -> *mut ::group; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5389 | pub fn getgrnam(name: *const ::c_schar) -> *mut ::group; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5389 - pub fn getgrnam(name: *const ::c_char) -> *mut ::group; 5389 + pub fn getgrnam(name: *const c_char) -> *mut ::group; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5391:38 | 5391 | pub fn sem_unlink(name: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5391 | pub fn sem_unlink(name: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5391 - pub fn sem_unlink(name: *const ::c_char) -> ::c_int; 5391 + pub fn sem_unlink(name: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5394:24 | 5394 | name: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5394 | name: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5394 - name: *const ::c_char, 5394 + name: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5396:21 | 5396 | buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5396 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5396 - buf: *mut ::c_char, 5396 + buf: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5403:21 | 5403 | buf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5403 | buf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5403 - buf: *mut ::c_char, 5403 + buf: *mut c_char, | error[E0412]: cannot find type `sigset_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5407:32 | 5407 | pub fn sigwait(set: *const sigset_t, sig: *mut ::c_int) -> ::c_int; | ^^^^^^^^ not found in this scope error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5415:24 | 5415 | user: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5415 | user: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5415 - user: *const ::c_char, 5415 + user: *const c_char, | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5424:34 | 5424 | pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE; | ^^^^^^ | help: a builtin type with a similar name exists | 5424 | pub fn popen(command: *const char, mode: *const c_char) -> *mut ::FILE; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5424:55 | 5424 | pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE; | ^^^^^^ | help: a builtin type with a similar name exists | 5424 | pub fn popen(command: *const c_char, mode: *const char) -> *mut ::FILE; | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5427:28 | 5427 | pathname: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5427 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5427 - pathname: *const ::c_char, 5427 + pathname: *const c_char, | error[E0412]: cannot find type `pthread_attr_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5433:24 | 5433 | attr: *const ::pthread_attr_t, | ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:112:13 | 112 | pub struct $i { $($field)* } | ------------- similarly named struct `pthread_cond_t` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5448:41 | 5448 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5448 | pub fn setmntent(filename: *const ::c_schar, ty: *const ::c_char) -> *mut ::FILE; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5448 - pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE; 5448 + pub fn setmntent(filename: *const c_char, ty: *const ::c_char) -> *mut ::FILE; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5448:62 | 5448 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5448 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_schar) -> *mut ::FILE; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5448 - pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE; 5448 + pub fn setmntent(filename: *const ::c_char, ty: *const c_char) -> *mut ::FILE; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5452:58 | 5452 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5452 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5452 - pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char; 5452 + pub fn hasmntopt(mnt: *const ::mntent, opt: *const c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5452:76 | 5452 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5452 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5452 - pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char; 5452 + pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5456:24 | 5456 | path: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5456 | path: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5456 - path: *const ::c_char, 5456 + path: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5459:29 | 5459 | argv: *const *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5459 | argv: *const *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5459 - argv: *const *mut ::c_char, 5459 + argv: *const *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5460:29 | 5460 | envp: *const *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5460 | envp: *const *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5460 - envp: *const *mut ::c_char, 5460 + envp: *const *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5464:24 | 5464 | file: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5464 | file: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5464 - file: *const ::c_char, 5464 + file: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5467:29 | 5467 | argv: *const *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5467 | argv: *const *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5467 - argv: *const *mut ::c_char, 5467 + argv: *const *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5468:29 | 5468 | envp: *const *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5468 | envp: *const *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5468 - envp: *const *mut ::c_char, 5468 + envp: *const *mut c_char, | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5474:25 | 5474 | default: *mut ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5478:27 | 5478 | default: *const ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5482:25 | 5482 | default: *mut ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5486:27 | 5486 | default: *const ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5517:24 | 5517 | path: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5517 | path: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5517 - path: *const ::c_char, 5517 + path: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5539:58 | 5539 | pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_char, mask: u32) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5539 | pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_schar, mask: u32) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5539 - pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_char, mask: u32) -> ::c_int; 5539 + pub fn inotify_add_watch(fd: ::c_int, path: *const c_char, mask: u32) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5542:60 | 5542 | pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5542 | pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_schar, cflags: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5542 - pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int; 5542 + pub fn regcomp(preg: *mut ::regex_t, pattern: *const c_char, cflags: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5546:25 | 5546 | input: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5546 | input: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5546 - input: *const ::c_char, 5546 + input: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5555:24 | 5555 | errbuf: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5555 | errbuf: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5555 - errbuf: *mut ::c_char, 5555 + errbuf: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5561:40 | 5561 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5561 | pub fn iconv_open(tocode: *const ::c_schar, fromcode: *const ::c_char) -> iconv_t; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5561 - pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; 5561 + pub fn iconv_open(tocode: *const c_char, fromcode: *const ::c_char) -> iconv_t; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5561:67 | 5561 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5561 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_schar) -> iconv_t; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5561 - pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t; 5561 + pub fn iconv_open(tocode: *const ::c_char, fromcode: *const c_char) -> iconv_t; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5564:28 | 5564 | inbuf: *mut *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5564 | inbuf: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5564 - inbuf: *mut *mut ::c_char, 5564 + inbuf: *mut *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5566:29 | 5566 | outbuf: *mut *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5566 | outbuf: *mut *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5566 - outbuf: *mut *mut ::c_char, 5566 + outbuf: *mut *mut c_char, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5588:29 | 5588 | pub fn gethostid() -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 5661 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 5588 - pub fn gethostid() -> ::c_long; 5588 + pub fn gethostid() -> c_long; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5599:65 | 5599 | pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_char, len: ::size_t) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5599 | pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_schar, len: ::size_t) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5599 - pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_char, len: ::size_t) -> ::c_int; 5599 + pub fn pthread_getname_np(thread: ::pthread_t, name: *mut c_char, len: ::size_t) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5600:67 | 5600 | pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 5600 | pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_schar) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 5600 - pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int; 5600 + pub fn pthread_setname_np(thread: ::pthread_t, name: *const c_char) -> ::c_int; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5603:27 | 5603 | argv: *const *mut c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5603 | argv: *const *mut char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_char` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5604:27 | 5604 | optstring: *const c_char, | ^^^^^^ | help: a builtin type with a similar name exists | 5604 | optstring: *const char, | ~~~~ help: consider importing this type alias | 5661 + use ffi::c_char; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:2:20 | 2 | pub type clock_t = c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 90+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:12:19 | 12 | pub type time_t = c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 907+ use ffi::c_long; | error[E0412]: cannot find type `c_long` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:13:24 | 13 | pub type suseconds_t = c_long; | ^^^^^^ not found in this scope | help: consider importing this type alias | 907+ use ffi::c_long; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:18:23 | 18 | pub type shmatt_t = ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 18 - pub type shmatt_t = ::c_ulong; 18 + pub type shmatt_t = c_ulong; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:19:24 | 19 | pub type msgqnum_t = ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 19 - pub type msgqnum_t = ::c_ulong; 19 + pub type msgqnum_t = c_ulong; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:20:23 | 20 | pub type msglen_t = ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907+ use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 20 - pub type msglen_t = ::c_ulong; 20 + pub type msglen_t = c_ulong; | error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:35:6 | 35 | impl siginfo_t { | ^^^^^^^^^ help: a struct with a similar name exists: `siginfo_f` ... 90 | struct siginfo_f { | ---------------- similarly named struct `siginfo_f` defined here error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:44:27 | 44 | (*(self as *const siginfo_t as *const siginfo_sigfault)).si_addr | ^^^^^^^^^ help: a struct with a similar name exists: `siginfo_f` ... 90 | struct siginfo_f { | ---------------- similarly named struct `siginfo_f` defined here error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:57:27 | 57 | (*(self as *const siginfo_t as *const siginfo_si_value)).si_value | ^^^^^^^^^ help: a struct with a similar name exists: `siginfo_f` ... 90 | struct siginfo_f { | ---------------- similarly named struct `siginfo_f` defined here error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:69:25 | 69 | si_utime: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 69 - si_utime: ::c_long, 69 + si_utime: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:70:25 | 70 | si_stime: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907+ use ffi::c_long; | help: if you import `c_long`, refer to it directly | 70 - si_stime: ::c_long, 70 + si_stime: c_long, | error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:95:14 | 90 | struct siginfo_f { | ---------------- similarly named struct `siginfo_f` defined here ... 95 | impl siginfo_t { | ^^^^^^^^^ help: a struct with a similar name exists: `siginfo_f` error[E0412]: cannot find type `siginfo_t` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:97:36 | 90 | struct siginfo_f { | ---------------- similarly named struct `siginfo_f` defined here ... 97 | &(*(self as *const siginfo_t as *const siginfo_f)).sifields | ^^^^^^^^^ help: a struct with a similar name exists: `siginfo_f` error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:112:48 | 112 | pub unsafe fn si_utime(&self) -> ::c_long { | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 112 - pub unsafe fn si_utime(&self) -> ::c_long { 112 + pub unsafe fn si_utime(&self) -> c_long { | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:116:48 | 116 | pub unsafe fn si_stime(&self) -> ::c_long { | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 116 - pub unsafe fn si_stime(&self) -> ::c_long { 116 + pub unsafe fn si_stime(&self) -> c_long { | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:141:22 | 141 | __dummy4: [::c_char; 16], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 141 | __dummy4: [::c_schar; 16], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 141 - __dummy4: [::c_char; 16], 141 + __dummy4: [c_char; 16], | error[E0412]: cannot find type `sigset_t` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:146:24 | 146 | pub sa_mask: ::sigset_t, | ^^^^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:152:24 | 152 | pub f_bsize: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 152 - pub f_bsize: ::c_ulong, 152 + pub f_bsize: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:153:25 | 153 | pub f_frsize: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 153 - pub f_frsize: ::c_ulong, 153 + pub f_frsize: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:161:23 | 161 | pub f_fsid: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 161 - pub f_fsid: ::c_ulong, 161 + pub f_fsid: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:166:23 | 166 | pub f_flag: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 166 - pub f_flag: ::c_ulong, 166 + pub f_flag: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:167:26 | 167 | pub f_namemax: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 167 - pub f_namemax: ::c_ulong, 167 + pub f_namemax: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:203:23 | 203 | __padding2: ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 203 | __padding2: ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 203 - __padding2: ::c_char, 203 + __padding2: c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:207:24 | 207 | pub rt_pad1: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 207 - pub rt_pad1: ::c_ulong, 207 + pub rt_pad1: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:213:24 | 213 | pub rt_pad3: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 213 - pub rt_pad3: ::c_ulong, 213 + pub rt_pad3: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:221:28 | 221 | pub rt_dev: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 221 | pub rt_dev: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 221 - pub rt_dev: *mut ::c_char, 221 + pub rt_dev: *mut c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:222:23 | 222 | pub rt_mtu: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 222 - pub rt_mtu: ::c_ulong, 222 + pub rt_mtu: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:223:26 | 223 | pub rt_window: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 223 - pub rt_window: ::c_ulong, 223 + pub rt_window: c_ulong, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:247:23 | 247 | pub offset: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 247 - pub offset: ::c_long, 247 + pub offset: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:248:21 | 248 | pub freq: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 248 - pub freq: ::c_long, 248 + pub freq: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:249:25 | 249 | pub maxerror: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 249 - pub maxerror: ::c_long, 249 + pub maxerror: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:250:25 | 250 | pub esterror: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 250 - pub esterror: ::c_long, 250 + pub esterror: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:252:25 | 252 | pub constant: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 252 - pub constant: ::c_long, 252 + pub constant: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:253:26 | 253 | pub precision: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 253 - pub precision: ::c_long, 253 + pub precision: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:254:26 | 254 | pub tolerance: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 254 - pub tolerance: ::c_long, 254 + pub tolerance: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:256:21 | 256 | pub tick: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 256 - pub tick: ::c_long, 256 + pub tick: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:257:24 | 257 | pub ppsfreq: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 257 - pub ppsfreq: ::c_long, 257 + pub ppsfreq: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:258:23 | 258 | pub jitter: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 258 - pub jitter: ::c_long, 258 + pub jitter: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:260:23 | 260 | pub stabil: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 260 - pub stabil: ::c_long, 260 + pub stabil: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:261:23 | 261 | pub jitcnt: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 261 - pub jitcnt: ::c_long, 261 + pub jitcnt: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:262:23 | 262 | pub calcnt: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 262 - pub calcnt: ::c_long, 262 + pub calcnt: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:263:23 | 263 | pub errcnt: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 263 - pub errcnt: ::c_long, 263 + pub errcnt: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:264:23 | 264 | pub stbcnt: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 264 - pub stbcnt: ::c_long, 264 + pub stbcnt: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:271:25 | 271 | pub maxerror: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 271 - pub maxerror: ::c_long, 271 + pub maxerror: c_long, | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:272:25 | 272 | pub esterror: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 272 - pub esterror: ::c_long, 272 + pub esterror: c_long, | error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:286:25 | 286 | pub producer: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:287:25 | 287 | pub consumer: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:288:21 | 288 | pub desc: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:289:22 | 289 | pub flags: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:300:25 | 300 | pub producer: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:301:25 | 301 | pub consumer: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:302:21 | 302 | pub desc: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:313:21 | 313 | pub addr: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:314:20 | 314 | pub len: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:321:21 | 321 | pub addr: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:322:20 | 322 | pub len: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:328:27 | 328 | pub rx_dropped: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:329:33 | 329 | pub rx_invalid_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:330:33 | 330 | pub tx_invalid_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:331:29 | 331 | pub rx_ring_full: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:332:41 | 332 | pub rx_fill_ring_empty_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:333:36 | 333 | pub tx_ring_empty_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:337:27 | 337 | pub rx_dropped: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:338:33 | 338 | pub rx_invalid_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:339:33 | 339 | pub tx_invalid_descs: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:347:21 | 347 | pub addr: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:355:23 | 355 | pub uptime: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 355 - pub uptime: ::c_ulong, 355 + pub uptime: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:356:23 | 356 | pub loads: [::c_ulong; 3], | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 356 - pub loads: [::c_ulong; 3], 356 + pub loads: [c_ulong; 3], | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:357:25 | 357 | pub totalram: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 357 - pub totalram: ::c_ulong, 357 + pub totalram: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:358:24 | 358 | pub freeram: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 358 - pub freeram: ::c_ulong, 358 + pub freeram: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:359:26 | 359 | pub sharedram: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 359 - pub sharedram: ::c_ulong, 359 + pub sharedram: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:360:26 | 360 | pub bufferram: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 360 - pub bufferram: ::c_ulong, 360 + pub bufferram: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:361:26 | 361 | pub totalswap: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 361 - pub totalswap: ::c_ulong, 361 + pub totalswap: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:362:25 | 362 | pub freeswap: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 362 - pub freeswap: ::c_ulong, 362 + pub freeswap: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:365:26 | 365 | pub totalhigh: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 365 - pub totalhigh: ::c_ulong, 365 + pub totalhigh: c_ulong, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:366:25 | 366 | pub freehigh: ::c_ulong, | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 366 - pub freehigh: ::c_ulong, 366 + pub freehigh: c_ulong, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:368:28 | 368 | pub __reserved: [::c_char; 256], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 368 | pub __reserved: [::c_schar; 256], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 368 - pub __reserved: [::c_char; 256], 368 + pub __reserved: [c_char; 256], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:382:25 | 382 | pub ut_line: [::c_char; 32], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 382 | pub ut_line: [::c_schar; 32], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 382 - pub ut_line: [::c_char; 32], 382 + pub ut_line: [c_char; 32], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:383:23 | 383 | pub ut_id: [::c_char; 4], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 383 | pub ut_id: [::c_schar; 4], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 383 - pub ut_id: [::c_char; 4], 383 + pub ut_id: [c_char; 4], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:384:25 | 384 | pub ut_user: [::c_char; 32], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 384 | pub ut_user: [::c_schar; 32], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 384 - pub ut_user: [::c_char; 32], 384 + pub ut_user: [c_char; 32], | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:385:25 | 385 | pub ut_host: [::c_char; 256], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 385 | pub ut_host: [::c_schar; 256], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 385 - pub ut_host: [::c_char; 256], 385 + pub ut_host: [c_char; 256], | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:389:27 | 389 | pub ut_session: ::c_long, | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 389 - pub ut_session: ::c_long, 389 + pub ut_session: c_long, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:407:22 | 407 | __unused: [::c_char; 20], | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 407 | __unused: [::c_schar; 20], | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 407 - __unused: [::c_char; 20], 407 + __unused: [c_char; 20], | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:566:26 | 566 | pub const MS_RMT_MASK: ::c_ulong = 0x02800051; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 566 - pub const MS_RMT_MASK: ::c_ulong = 0x02800051; 566 + pub const MS_RMT_MASK: c_ulong = 0x02800051; | error[E0425]: cannot find value `O_DIRECTORY` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:575:45 | 575 | pub const O_TMPFILE: ::c_int = 0o20000000 | O_DIRECTORY; | ^^^^^^^^^^^ not found in this scope error[E0425]: cannot find value `O_NONBLOCK` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:617:31 | 617 | pub const O_NDELAY: ::c_int = O_NONBLOCK; | ^^^^^^^^^^ help: a constant with a similar name exists: `EFD_NONBLOCK` ... 685 | pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK; | ----------------------------------------------- similarly named constant `EFD_NONBLOCK` defined here error[E0425]: cannot find value `MAP_ANON` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:623:36 | 623 | pub const MAP_ANONYMOUS: ::c_int = MAP_ANON; | ^^^^^^^^ not found in this scope error[E0425]: cannot find value `O_NONBLOCK` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:627:36 | 627 | pub const SOCK_NONBLOCK: ::c_int = O_NONBLOCK; | ^^^^^^^^^^ help: a constant with a similar name exists: `EFD_NONBLOCK` ... 685 | pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK; | ----------------------------------------------- similarly named constant `EFD_NONBLOCK` defined here error[E0425]: cannot find value `SIGSYS` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:633:34 | 633 | pub const SIGUNUSED: ::c_int = ::SIGSYS; | ^^^^^^ not found in the crate root error[E0425]: cannot find value `O_NONBLOCK` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:685:37 | 685 | pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK; | ^^^^^^^^^^ help: a constant with a similar name exists: `IN_NONBLOCK` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3817:1 | 3817 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK; | -------------------------------------------- similarly named constant `IN_NONBLOCK` defined here error[E0425]: cannot find value `O_NONBLOCK` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:687:37 | 687 | pub const SFD_NONBLOCK: ::c_int = ::O_NONBLOCK; | ^^^^^^^^^^ help: a constant with a similar name exists: `IN_NONBLOCK` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:3817:1 | 3817 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK; | -------------------------------------------- similarly named constant `IN_NONBLOCK` defined here error[E0425]: cannot find value `O_NONBLOCK` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:689:38 | 685 | pub const EFD_NONBLOCK: ::c_int = ::O_NONBLOCK; | ----------------------------------------------- similarly named constant `EFD_NONBLOCK` defined here ... 689 | pub const PIDFD_NONBLOCK: ::c_uint = O_NONBLOCK as ::c_uint; | ^^^^^^^^^^ help: a constant with a similar name exists: `EFD_NONBLOCK` error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:781:20 | 781 | pub const MAXTC: ::c_long = 6; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 781 - pub const MAXTC: ::c_long = 6; 781 + pub const MAXTC: c_long = 6; | error[E0412]: cannot find type `c_long` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:852:47 | 852 | pub fn ptrace(request: ::c_int, ...) -> ::c_long; | ^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_long; | help: if you import `c_long`, refer to it directly | 852 - pub fn ptrace(request: ::c_int, ...) -> ::c_long; 852 + pub fn ptrace(request: ::c_int, ...) -> c_long; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:863:24 | 863 | path: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 863 | path: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 863 - path: *const ::c_char, 863 + path: *const c_char, | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:865:31 | 865 | pub fn getauxval(type_: ::c_ulong) -> ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 865 - pub fn getauxval(type_: ::c_ulong) -> ::c_ulong; 865 + pub fn getauxval(type_: c_ulong) -> ::c_ulong; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:865:45 | 865 | pub fn getauxval(type_: ::c_ulong) -> ::c_ulong; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 907 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 865 - pub fn getauxval(type_: ::c_ulong) -> ::c_ulong; 865 + pub fn getauxval(type_: ::c_ulong) -> c_ulong; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:875:30 | 875 | pub fn ctermid(s: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 875 | pub fn ctermid(s: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 875 - pub fn ctermid(s: *mut ::c_char) -> *mut ::c_char; 875 + pub fn ctermid(s: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:875:48 | 875 | pub fn ctermid(s: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 875 | pub fn ctermid(s: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 875 - pub fn ctermid(s: *mut ::c_char) -> *mut ::c_char; 875 + pub fn ctermid(s: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:877:40 | 877 | pub fn memfd_create(name: *const ::c_char, flags: ::c_uint) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 877 | pub fn memfd_create(name: *const ::c_schar, flags: ::c_uint) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 877 - pub fn memfd_create(name: *const ::c_char, flags: ::c_uint) -> ::c_int; 877 + pub fn memfd_create(name: *const c_char, flags: ::c_uint) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:881:42 | 881 | pub fn euidaccess(pathname: *const ::c_char, mode: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 881 | pub fn euidaccess(pathname: *const ::c_schar, mode: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 881 - pub fn euidaccess(pathname: *const ::c_char, mode: ::c_int) -> ::c_int; 881 + pub fn euidaccess(pathname: *const c_char, mode: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:882:39 | 882 | pub fn eaccess(pathname: *const ::c_char, mode: ::c_int) -> ::c_int; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 882 | pub fn eaccess(pathname: *const ::c_schar, mode: ::c_int) -> ::c_int; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 882 - pub fn eaccess(pathname: *const ::c_char, mode: ::c_int) -> ::c_int; 882 + pub fn eaccess(pathname: *const c_char, mode: ::c_int) -> ::c_int; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:884:51 | 884 | pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 884 | pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 884 - pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_char; 884 + pub fn asctime_r(tm: *const ::tm, buf: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:884:69 | 884 | pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 884 | pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 884 - pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut ::c_char; 884 + pub fn asctime_r(tm: *const ::tm, buf: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:887:19 | 887 | s: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 887 | s: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 887 - s: *mut ::c_char, 887 + s: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:889:26 | 889 | format: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 889 | format: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 889 - format: *const ::c_char, 889 + format: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:893:19 | 893 | s: *mut ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 893 | s: *mut ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 893 - s: *mut ::c_char, 893 + s: *mut c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:895:26 | 895 | format: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 895 | format: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 895 - format: *const ::c_char, 895 + format: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:899:33 | 899 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 899 | pub fn strptime(s: *const ::c_schar, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 899 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; 899 + pub fn strptime(s: *const c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:899:58 | 899 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 899 | pub fn strptime(s: *const ::c_char, format: *const ::c_schar, tm: *mut ::tm) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 899 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; 899 + pub fn strptime(s: *const ::c_char, format: *const c_char, tm: *mut ::tm) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:899:91 | 899 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 899 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 899 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char; 899 + pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:901:33 | 901 | pub fn dirname(path: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 901 | pub fn dirname(path: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 901 - pub fn dirname(path: *mut ::c_char) -> *mut ::c_char; 901 + pub fn dirname(path: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:901:51 | 901 | pub fn dirname(path: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 901 | pub fn dirname(path: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 901 - pub fn dirname(path: *mut ::c_char) -> *mut ::c_char; 901 + pub fn dirname(path: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:902:34 | 902 | pub fn basename(path: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 902 | pub fn basename(path: *mut ::c_schar) -> *mut ::c_char; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 902 - pub fn basename(path: *mut ::c_char) -> *mut ::c_char; 902 + pub fn basename(path: *mut c_char) -> *mut ::c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:902:52 | 902 | pub fn basename(path: *mut ::c_char) -> *mut ::c_char; | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 902 | pub fn basename(path: *mut ::c_char) -> *mut ::c_schar; | ~~~~~~~ help: consider importing this type alias | 907 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 902 - pub fn basename(path: *mut ::c_char) -> *mut ::c_char; 902 + pub fn basename(path: *mut ::c_char) -> *mut c_char; | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:2:49 | 2 | pub unsafe extern "C" fn creat64(path: *const ::c_char, mode: ::mode_t) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 2 | pub unsafe extern "C" fn creat64(path: *const ::c_schar, mode: ::mode_t) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 11+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 2 - pub unsafe extern "C" fn creat64(path: *const ::c_char, mode: ::mode_t) -> ::c_int { 2 + pub unsafe extern "C" fn creat64(path: *const c_char, mode: ::mode_t) -> ::c_int { | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:22:53 | 22 | pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const ::c_char) -> *mut ::FILE { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 22 | pub unsafe extern "C" fn fopen64(pathname: *const ::c_schar, mode: *const ::c_char) -> *mut ::FILE { | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 22 - pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const ::c_char) -> *mut ::FILE { 22 + pub unsafe extern "C" fn fopen64(pathname: *const c_char, mode: *const ::c_char) -> *mut ::FILE { | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:22:76 | 22 | pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const ::c_char) -> *mut ::FILE { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 22 | pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const ::c_schar) -> *mut ::FILE { | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 22 - pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const ::c_char) -> *mut ::FILE { 22 + pub unsafe extern "C" fn fopen64(pathname: *const ::c_char, mode: *const c_char) -> *mut ::FILE { | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:28:24 | 28 | pathname: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 28 | pathname: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 28 - pathname: *const ::c_char, 28 + pathname: *const c_char, | error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:29:20 | 29 | mode: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 29 | mode: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 29 - mode: *const ::c_char, 29 + mode: *const c_char, | error[E0573]: expected type, found function `stat64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:50:61 | 50 | pub unsafe extern "C" fn fstat64(fildes: ::c_int, buf: *mut ::stat64) -> ::c_int { | ^^^^^^^^ not a type error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:57:20 | 57 | path: *const ::c_char, | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 57 | path: *const ::c_schar, | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 57 - path: *const ::c_char, 57 + path: *const c_char, | error[E0573]: expected type, found function `stat64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:58:15 | 58 | buf: *mut ::stat64, | ^^^^^^^^ not a type error[E0573]: expected type, found function `statfs64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:65:59 | 65 | pub unsafe extern "C" fn fstatfs64(fd: ::c_int, buf: *mut ::statfs64) -> ::c_int { | ^^^^^^^^^^ not a type error[E0573]: expected type, found function `statvfs64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:70:60 | 70 | pub unsafe extern "C" fn fstatvfs64(fd: ::c_int, buf: *mut ::statvfs64) -> ::c_int { | ^^--------- | | | help: a struct with a similar name exists: `statvfs` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `statvfs` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:95:49 | 95 | pub unsafe extern "C" fn lstat64(path: *const ::c_char, buf: *mut ::stat64) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 95 | pub unsafe extern "C" fn lstat64(path: *const ::c_schar, buf: *mut ::stat64) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 117+ use ffi::c_char; | help: if you import `c_char`, refer to it directly | 95 - pub unsafe extern "C" fn lstat64(path: *const ::c_char, buf: *mut ::stat64) -> ::c_int { 95 + pub unsafe extern "C" fn lstat64(path: *const c_char, buf: *mut ::stat64) -> ::c_int { | error[E0573]: expected type, found function `stat64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:95:67 | 95 | pub unsafe extern "C" fn lstat64(path: *const ::c_char, buf: *mut ::stat64) -> ::c_int { | ^^^^^^^^ not a type error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:219:52 | 219 | pub unsafe extern "C" fn stat64(pathname: *const ::c_char, statbuf: *mut ::stat64) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 219 | pub unsafe extern "C" fn stat64(pathname: *const ::c_schar, statbuf: *mut ::stat64) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 117 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 219 - pub unsafe extern "C" fn stat64(pathname: *const ::c_char, statbuf: *mut ::stat64) -> ::c_int { 219 + pub unsafe extern "C" fn stat64(pathname: *const c_char, statbuf: *mut ::stat64) -> ::c_int { | error[E0573]: expected type, found function `stat64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:219:74 | 219 | pub unsafe extern "C" fn stat64(pathname: *const ::c_char, statbuf: *mut ::stat64) -> ::c_int { | ^^^^^^^^ not a type error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:224:54 | 224 | pub unsafe extern "C" fn statfs64(pathname: *const ::c_char, buf: *mut ::statfs64) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 224 | pub unsafe extern "C" fn statfs64(pathname: *const ::c_schar, buf: *mut ::statfs64) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 117 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 224 - pub unsafe extern "C" fn statfs64(pathname: *const ::c_char, buf: *mut ::statfs64) -> ::c_int { 224 + pub unsafe extern "C" fn statfs64(pathname: *const c_char, buf: *mut ::statfs64) -> ::c_int { | error[E0573]: expected type, found function `statfs64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:224:72 | 224 | pub unsafe extern "C" fn statfs64(pathname: *const ::c_char, buf: *mut ::statfs64) -> ::c_int { | ^^^^^^^^^^ not a type error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:229:51 | 229 | pub unsafe extern "C" fn statvfs64(path: *const ::c_char, buf: *mut ::statvfs64) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 229 | pub unsafe extern "C" fn statvfs64(path: *const ::c_schar, buf: *mut ::statvfs64) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 117 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 229 - pub unsafe extern "C" fn statvfs64(path: *const ::c_char, buf: *mut ::statvfs64) -> ::c_int { 229 + pub unsafe extern "C" fn statvfs64(path: *const c_char, buf: *mut ::statvfs64) -> ::c_int { | error[E0573]: expected type, found function `statvfs64` --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:229:69 | 229 | pub unsafe extern "C" fn statvfs64(path: *const ::c_char, buf: *mut ::statvfs64) -> ::c_int { | ^^--------- | | | help: a struct with a similar name exists: `statvfs` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:13 | 77 | pub struct $i { $($field)* } | ------------- similarly named struct `statvfs` defined here error[E0412]: cannot find type `c_char` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/lfs64.rs:239:52 | 239 | pub unsafe extern "C" fn truncate64(path: *const ::c_char, length: ::off64_t) -> ::c_int { | ^^^^^^ | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/mod.rs:6:1 | 6 | pub type c_schar = i8; | ---------------------- similarly named type alias `c_schar` defined here | help: a type alias with a similar name exists | 239 | pub unsafe extern "C" fn truncate64(path: *const ::c_schar, length: ::off64_t) -> ::c_int { | ~~~~~~~ help: consider importing this type alias | 117 + use ffi::c_char; | help: if you import `c_char`, refer to it directly | 239 - pub unsafe extern "C" fn truncate64(path: *const ::c_char, length: ::off64_t) -> ::c_int { 239 + pub unsafe extern "C" fn truncate64(path: *const c_char, length: ::off64_t) -> ::c_int { | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/arch/generic/mod.rs:121:30 | 121 | pub const FICLONE: ::c_ulong = 0x40049409; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 121 - pub const FICLONE: ::c_ulong = 0x40049409; 121 + pub const FICLONE: c_ulong = 0x40049409; | error[E0412]: cannot find type `c_ulong` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/arch/generic/mod.rs:122:35 | 122 | pub const FICLONERANGE: ::c_ulong = 0x4020940D; | ^^^^^^^ not found in the crate root | help: consider importing this type alias | 1 + use ffi::c_ulong; | help: if you import `c_ulong`, refer to it directly | 122 - pub const FICLONERANGE: ::c_ulong = 0x4020940D; 122 + pub const FICLONERANGE: c_ulong = 0x4020940D; | error[E0412]: cannot find type `__u64` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/align.rs:62:27 | 62 | pub mask: __u64, | ^^^^^ not found in this scope | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5680:1 | 5680 | expand_align!(); | --------------- in this macro invocation | = note: this error originates in the macro `expand_align` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0412]: cannot find type `__u64` in this scope --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/align.rs:62:27 | 62 | pub mask: __u64, | ^^^^^ not found in this scope | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5680:1 | 5680 | expand_align!(); | --------------- in this macro invocation | = note: this error originates in the macro `expand_align` (in Nightly builds, run with -Z macro-backtrace for more info) help: you might be missing a type parameter --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/macros.rs:77:26 | 77 | pub struct $i<__u64> { $($field)* } | +++++++ error[E0425]: cannot find value `__SIZEOF_PTHREAD_MUTEX_T` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/align.rs:112:30 | 112 | size: [u8; ::__SIZEOF_PTHREAD_MUTEX_T], | ^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_MUTEXATTR_T` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:636:1 | 636 | pub const __SIZEOF_PTHREAD_MUTEXATTR_T: usize = 4; | -------------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_MUTEXATTR_T` defined here | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5680:1 | 5680 | expand_align!(); | --------------- in this macro invocation | = note: this error originates in the macro `expand_align` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0425]: cannot find value `__SIZEOF_PTHREAD_RWLOCK_T` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/align.rs:139:30 | 139 | size: [u8; ::__SIZEOF_PTHREAD_RWLOCK_T], | ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_RWLOCKATTR_T` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:637:1 | 637 | pub const __SIZEOF_PTHREAD_RWLOCKATTR_T: usize = 8; | --------------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_RWLOCKATTR_T` defined here | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5680:1 | 5680 | expand_align!(); | --------------- in this macro invocation | = note: this error originates in the macro `expand_align` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0425]: cannot find value `__SIZEOF_PTHREAD_BARRIER_T` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/align.rs:167:30 | 167 | size: [u8; ::__SIZEOF_PTHREAD_BARRIER_T], | ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_BARRIERATTR_T` | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/musl/mod.rs:638:1 | 638 | pub const __SIZEOF_PTHREAD_BARRIERATTR_T: usize = 4; | ---------------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_BARRIERATTR_T` defined here | ::: /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/mod.rs:5680:1 | 5680 | expand_align!(); | --------------- in this macro invocation | = note: this error originates in the macro `expand_align` (in Nightly builds, run with -Z macro-backtrace for more info) error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/non_exhaustive.rs:5:22 | 5 | pub flags: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/non_exhaustive.rs:6:21 | 6 | pub mode: ::__u64, | ^^^^^ not found in the crate root error[E0412]: cannot find type `__u64` in the crate root --> /home/buildozer/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.152/src/unix/linux_like/linux/non_exhaustive.rs:7:24 | 7 | pub resolve: ::__u64, | ^^^^^ not found in the crate root Some errors have detailed explanations: E0412, E0425, E0573. For more information about an error, try `rustc --explain E0412`. error: could not compile `libc` (lib) due to 1077 previous errors warning: build failed, waiting for other jobs to finish... >>> ERROR: bkt: build failed >>> bkt: Uninstalling dependencies... (1/11) Purging .makedepends-bkt (20240711.150915) (2/11) Purging cargo-auditable (0.6.2-r0) (3/11) Purging bash (5.2.26-r0) Executing bash-5.2.26-r0.pre-deinstall (4/11) Purging cargo (1.79.0-r1) (5/11) Purging rust (1.79.0-r1) (6/11) Purging llvm18-libs (18.1.8-r0) (7/11) Purging readline (8.2.10-r0) (8/11) Purging scudo-malloc (18.1.8-r0) (9/11) Purging libffi (3.4.6-r0) (10/11) Purging libxml2 (2.12.8-r0) (11/11) Purging xz-libs (5.6.2-r0) Executing busybox-1.36.1-r31.trigger OK: 213 MiB in 99 packages