🔔 does-it-build supports sending notifications to target maintainers via GitHub issues. You can add yourself with a PR. 🔔
Build date: 2025-07-07T18:56:41.158Z
Build duration: 29.555s
Builder does-it-build commit: 87ff3d03
Compiling compiler_builtins v0.1.138
Compiling core v0.0.0 (/root/.rustup/toolchains/nightly-2024-11-29-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
Compiling rustc-std-workspace-core v1.99.0 (/root/.rustup/toolchains/nightly-2024-11-29-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
Compiling alloc v0.0.0 (/root/.rustup/toolchains/nightly-2024-11-29-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
Compiling rustc-std-workspace-alloc v1.99.0 (/root/.rustup/toolchains/nightly-2024-11-29-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
Compiling libc v0.2.162
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
163+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
163+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
163+ 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 `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:59:21
|
59 | pub actime: time_t,
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:60:22
|
60 | pub modtime: time_t,
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:64:21
|
64 | pub tv_sec: time_t,
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `suseconds_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:65:22
|
65 | pub tv_usec: suseconds_t,
| ^^^^^^^^^^^ help: a type alias with a similar name exists: `useconds_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3:1
|
3 | pub type useconds_t = u32;
| -------------------------- similarly named type alias `useconds_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:71:21
|
71 | pub tv_sec: time_t,
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:75:24
|
75 | pub tv_nsec: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
163+ 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 `rlim_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:79:23
|
79 | pub rlim_cur: rlim_t,
| ^^^^^^ help: a struct with a similar name exists: `rlimit`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `rlimit` defined here
error[E0412]: cannot find type `rlim_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:80:23
|
80 | pub rlim_max: rlim_t,
| ^^^^^^ help: a struct with a similar name exists: `rlimit`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `rlimit` defined here
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:86:24
|
86 | pub ru_maxrss: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
163+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:89:23
|
89 | pub ru_ixrss: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
163+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:92:23
|
92 | pub ru_idrss: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
163+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:95:23
|
95 | pub ru_isrss: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
163+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:98:24
|
98 | pub ru_minflt: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
163+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:101:24
|
101 | pub ru_majflt: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:104:23
|
104 | pub ru_nswap: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:107:25
|
107 | pub ru_inblock: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:110:25
|
110 | pub ru_oublock: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:113:24
|
113 | pub ru_msgsnd: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:116:24
|
116 | pub ru_msgrcv: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:119:26
|
119 | pub ru_nsignals: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:122:23
|
122 | pub ru_nvcsw: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:125:24
|
125 | pub ru_nivcsw: c_long,
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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 `clock_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:185:26
|
185 | pub tms_utime: ::clock_t,
| ^^^^^^^ help: a type alias with a similar name exists: `clockid_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:4:1
|
4 | pub type clockid_t = ::c_int;
| ----------------------------- similarly named type alias `clockid_t` defined here
error[E0412]: cannot find type `clock_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:186:26
|
186 | pub tms_stime: ::clock_t,
| ^^^^^^^ help: a type alias with a similar name exists: `clockid_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:4:1
|
4 | pub type clockid_t = ::c_int;
| ----------------------------- similarly named type alias `clockid_t` defined here
error[E0412]: cannot find type `clock_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:187:27
|
187 | pub tms_cutime: ::clock_t,
| ^^^^^^^ help: a type alias with a similar name exists: `clockid_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:4:1
|
4 | pub type clockid_t = ::c_int;
| ----------------------------- similarly named type alias `clockid_t` defined here
error[E0412]: cannot find type `clock_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:188:27
|
188 | pub tms_cstime: ::clock_t,
| ^^^^^^^ help: a type alias with a similar name exists: `clockid_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:4:1
|
4 | pub type clockid_t = ::c_int;
| ----------------------------- similarly named type alias `clockid_t` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1639+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:490:35
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
490 | pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;
| ^^^^^^
|
help: a type alias with a similar name exists
|
490 | pub fn fopen(filename: *const c_schar, mode: *const c_char) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:490:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
490 | pub fn fopen(filename: *const c_char, mode: *const c_char) -> *mut FILE;
| ^^^^^^
|
help: a type alias with a similar name exists
|
490 | pub fn fopen(filename: *const c_char, mode: *const c_schar) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:495:37
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
495 | 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
|
495 | pub fn freopen(filename: *const c_schar, mode: *const c_char, file: *mut FILE) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:495:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
495 | 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
|
495 | pub fn freopen(filename: *const c_char, mode: *const c_schar, file: *mut FILE) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:499:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
499 | pub fn remove(filename: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
499 | pub fn remove(filename: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:500:35
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
500 | pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
500 | pub fn rename(oldname: *const c_schar, newname: *const c_char) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:500:59
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
500 | pub fn rename(oldname: *const c_char, newname: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
500 | pub fn rename(oldname: *const c_char, newname: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:502:52
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
502 | 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
|
502 | pub fn setvbuf(stream: *mut FILE, buffer: *mut c_schar, mode: c_int, size: size_t) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:503:48
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
503 | pub fn setbuf(stream: *mut FILE, buf: *mut c_char);
| ^^^^^^
|
help: a type alias with a similar name exists
|
503 | pub fn setbuf(stream: *mut FILE, buf: *mut c_schar);
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:507:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
507 | 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
|
507 | pub fn fgets(buf: *mut c_schar, n: c_int, stream: *mut FILE) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:507:73
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
507 | 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
|
507 | pub fn fgets(buf: *mut c_char, n: c_int, stream: *mut FILE) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:513:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
513 | pub fn fputs(s: *const c_char, stream: *mut FILE) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
513 | pub fn fputs(s: *const c_schar, stream: *mut FILE) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:514:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
514 | pub fn puts(s: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
514 | pub fn puts(s: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:522:45
|
522 | 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
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:523:40
|
523 | pub fn ftell(stream: *mut FILE) -> c_long;
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:532:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
532 | pub fn perror(s: *const c_char);
| ^^^^^^
|
help: a type alias with a similar name exists
|
532 | pub fn perror(s: *const c_schar);
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:533:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
533 | pub fn atof(s: *const c_char) -> c_double;
| ^^^^^^
|
help: a type alias with a similar name exists
|
533 | pub fn atof(s: *const c_schar) -> c_double;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:534:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
534 | pub fn atoi(s: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
534 | pub fn atoi(s: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:535:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
535 | pub fn atol(s: *const c_char) -> c_long;
| ^^^^^^
|
help: a type alias with a similar name exists
|
535 | pub fn atol(s: *const c_schar) -> c_long;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:535:38
|
535 | pub fn atol(s: *const c_char) -> c_long;
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:536:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
536 | pub fn atoll(s: *const c_char) -> c_longlong;
| ^^^^^^
|
help: a type alias with a similar name exists
|
536 | pub fn atoll(s: *const c_schar) -> c_longlong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:541:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
541 | pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double;
| ^^^^^^
|
help: a type alias with a similar name exists
|
541 | pub fn strtod(s: *const c_schar, endp: *mut *mut c_char) -> c_double;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:541:53
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
541 | pub fn strtod(s: *const c_char, endp: *mut *mut c_char) -> c_double;
| ^^^^^^
|
help: a type alias with a similar name exists
|
541 | pub fn strtod(s: *const c_char, endp: *mut *mut c_schar) -> c_double;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:542:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
542 | pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float;
| ^^^^^^
|
help: a type alias with a similar name exists
|
542 | pub fn strtof(s: *const c_schar, endp: *mut *mut c_char) -> c_float;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:542:53
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
542 | pub fn strtof(s: *const c_char, endp: *mut *mut c_char) -> c_float;
| ^^^^^^
|
help: a type alias with a similar name exists
|
542 | pub fn strtof(s: *const c_char, endp: *mut *mut c_schar) -> c_float;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:543:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
543 | 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
|
543 | pub fn strtol(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_long;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:543:53
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
543 | 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
|
543 | pub fn strtol(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_long;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:543:77
|
543 | 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
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:544:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
544 | 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
|
544 | pub fn strtoll(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_longlong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:544:54
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
544 | 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
|
544 | pub fn strtoll(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_longlong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:545:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
545 | 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
|
545 | pub fn strtoul(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_ulong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:545:54
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
545 | 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
|
545 | pub fn strtoul(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_ulong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_ulong` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:545:78
|
545 | 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
|
1639+ use ffi::c_ulong;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:546:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
546 | 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
|
546 | pub fn strtoull(s: *const c_schar, endp: *mut *mut c_char, base: c_int) -> c_ulonglong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:546:55
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
546 | 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
|
546 | pub fn strtoull(s: *const c_char, endp: *mut *mut c_schar, base: c_int) -> c_ulonglong;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:558:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
558 | pub fn system(s: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
558 | pub fn system(s: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:559:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
559 | pub fn getenv(s: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
559 | pub fn getenv(s: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:559:45
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
559 | pub fn getenv(s: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
559 | pub fn getenv(s: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:561:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
561 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
561 | pub fn strcpy(dst: *mut c_schar, src: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:561:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
561 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
561 | pub fn strcpy(dst: *mut c_char, src: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:561:65
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
561 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
561 | pub fn strcpy(dst: *mut c_char, src: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:562:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
562 | 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
|
562 | pub fn strncpy(dst: *mut c_schar, src: *const c_char, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:562:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
562 | 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
|
562 | pub fn strncpy(dst: *mut c_char, src: *const c_schar, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:562:77
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
562 | 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
|
562 | pub fn strncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:563:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
563 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
563 | pub fn stpcpy(dst: *mut c_schar, src: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:563:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
563 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
563 | pub fn stpcpy(dst: *mut c_char, src: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:563:65
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
563 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
563 | pub fn stpcpy(dst: *mut c_char, src: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:564:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
564 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
564 | pub fn strcat(s: *mut c_schar, ct: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:564:46
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
564 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
564 | pub fn strcat(s: *mut c_char, ct: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:564:62
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
564 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
564 | pub fn strcat(s: *mut c_char, ct: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:565:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
565 | 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
|
565 | pub fn strncat(s: *mut c_schar, ct: *const c_char, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:565:47
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
565 | 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
|
565 | pub fn strncat(s: *mut c_char, ct: *const c_schar, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:565:74
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
565 | 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
|
565 | pub fn strncat(s: *mut c_char, ct: *const c_char, n: size_t) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:566:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
566 | pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
566 | pub fn strcmp(cs: *const c_schar, ct: *const c_char) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:566:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
566 | pub fn strcmp(cs: *const c_char, ct: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
566 | pub fn strcmp(cs: *const c_char, ct: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:567:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
567 | 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
|
567 | pub fn strncmp(cs: *const c_schar, ct: *const c_char, n: size_t) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:567:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
567 | 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
|
567 | pub fn strncmp(cs: *const c_char, ct: *const c_schar, n: size_t) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:568:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
568 | pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
568 | pub fn strcoll(cs: *const c_schar, ct: *const c_char) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:568:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
568 | pub fn strcoll(cs: *const c_char, ct: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
568 | pub fn strcoll(cs: *const c_char, ct: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:569:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
569 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
569 | pub fn strchr(cs: *const c_schar, c: c_int) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:569:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
569 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
569 | pub fn strchr(cs: *const c_char, c: c_int) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:570:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
570 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
570 | pub fn strrchr(cs: *const c_schar, c: c_int) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:570:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
570 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
570 | pub fn strrchr(cs: *const c_char, c: c_int) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:571:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
571 | pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
571 | pub fn strspn(cs: *const c_schar, ct: *const c_char) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:571:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
571 | pub fn strspn(cs: *const c_char, ct: *const c_char) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
571 | pub fn strspn(cs: *const c_char, ct: *const c_schar) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:572:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
572 | pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
572 | pub fn strcspn(cs: *const c_schar, ct: *const c_char) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:572:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
572 | pub fn strcspn(cs: *const c_char, ct: *const c_char) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
572 | pub fn strcspn(cs: *const c_char, ct: *const c_schar) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:573:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
573 | pub fn strdup(cs: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
573 | pub fn strdup(cs: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:573:46
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
573 | pub fn strdup(cs: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
573 | pub fn strdup(cs: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:574:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
574 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
574 | pub fn strndup(cs: *const c_schar, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:574:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
574 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
574 | pub fn strndup(cs: *const c_char, n: size_t) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:575:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
575 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
575 | pub fn strpbrk(cs: *const c_schar, ct: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:575:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
575 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
575 | pub fn strpbrk(cs: *const c_char, ct: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:575:66
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
575 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
575 | pub fn strpbrk(cs: *const c_char, ct: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:576:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
576 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
576 | pub fn strstr(cs: *const c_schar, ct: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:576:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
576 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
576 | pub fn strstr(cs: *const c_char, ct: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:576:65
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
576 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
576 | pub fn strstr(cs: *const c_char, ct: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:577:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
577 | pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
577 | pub fn strcasecmp(s1: *const c_schar, s2: *const c_char) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:577:53
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
577 | pub fn strcasecmp(s1: *const c_char, s2: *const c_char) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
577 | pub fn strcasecmp(s1: *const c_char, s2: *const c_schar) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:578:35
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
578 | 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
|
578 | pub fn strncasecmp(s1: *const c_schar, s2: *const c_char, n: size_t) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:578:54
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
578 | 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
|
578 | pub fn strncasecmp(s1: *const c_char, s2: *const c_schar, n: size_t) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:579:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
579 | pub fn strlen(cs: *const c_char) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
579 | pub fn strlen(cs: *const c_schar) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:580:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
580 | pub fn strnlen(cs: *const c_char, maxlen: size_t) -> size_t;
| ^^^^^^
|
help: a type alias with a similar name exists
|
580 | pub fn strnlen(cs: *const c_schar, maxlen: size_t) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:585:39
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
585 | pub fn strerror(n: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
585 | pub fn strerror(n: c_int) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:586:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
586 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
586 | pub fn strtok(s: *mut c_schar, t: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:586:45
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
586 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
586 | pub fn strtok(s: *mut c_char, t: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:586:61
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
586 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
586 | pub fn strtok(s: *mut c_char, t: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:587:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
587 | 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
|
587 | 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
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:587:47
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
587 | 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
|
587 | 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
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:587:68
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
587 | 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
|
587 | 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
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:587:84
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
587 | 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
|
587 | 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
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:588:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
588 | 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
|
588 | pub fn strxfrm(s: *mut c_schar, ct: *const c_char, n: size_t) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:588:47
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
588 | 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
|
588 | pub fn strxfrm(s: *mut c_char, ct: *const c_schar, n: size_t) -> size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:589:42
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
589 | pub fn strsignal(sig: c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
589 | pub fn strsignal(sig: c_int) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `wchar_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:590:31
|
590 | pub fn wcslen(buf: *const wchar_t) -> size_t;
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:591:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
591 | 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
|
591 | pub fn wcstombs(dest: *mut c_schar, src: *const wchar_t, n: size_t) -> ::size_t;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `wchar_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:591:52
|
591 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:594:31
|
594 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:594:43
|
594 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:594:71
|
594 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:603:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
603 | pub fn getpwnam(name: *const ::c_char) -> *mut passwd;
| ^^^^^^
|
help: a type alias with a similar name exists
|
603 | pub fn getpwnam(name: *const ::c_schar) -> *mut passwd;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
603 - pub fn getpwnam(name: *const ::c_char) -> *mut passwd;
603 + pub fn getpwnam(name: *const c_char) -> *mut passwd;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:607:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
607 | pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
607 | pub fn fprintf(stream: *mut ::FILE, format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
607 - pub fn fprintf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
607 + pub fn fprintf(stream: *mut ::FILE, format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:608:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
608 | pub fn printf(format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
608 | pub fn printf(format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
608 - pub fn printf(format: *const ::c_char, ...) -> ::c_int;
608 + pub fn printf(format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:609:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
609 | 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
|
609 | pub fn snprintf(s: *mut ::c_schar, n: ::size_t, format: *const ::c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
609 - pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int;
609 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:609:69
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
609 | 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
|
609 | pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
609 - pub fn snprintf(s: *mut ::c_char, n: ::size_t, format: *const ::c_char, ...) -> ::c_int;
609 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:610:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
610 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
610 | pub fn sprintf(s: *mut ::c_schar, format: *const ::c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
610 - pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
610 + pub fn sprintf(s: *mut c_char, format: *const ::c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:610:55
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
610 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
610 | pub fn sprintf(s: *mut ::c_char, format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
610 - pub fn sprintf(s: *mut ::c_char, format: *const ::c_char, ...) -> ::c_int;
610 + pub fn sprintf(s: *mut ::c_char, format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:615:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
615 | pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
615 | pub fn fscanf(stream: *mut ::FILE, format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
615 - pub fn fscanf(stream: *mut ::FILE, format: *const ::c_char, ...) -> ::c_int;
615 + pub fn fscanf(stream: *mut ::FILE, format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:620:35
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
620 | pub fn scanf(format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
620 | pub fn scanf(format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
620 - pub fn scanf(format: *const ::c_char, ...) -> ::c_int;
620 + pub fn scanf(format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:625:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
625 | pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
625 | pub fn sscanf(s: *const ::c_schar, format: *const ::c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
625 - pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
625 + pub fn sscanf(s: *const c_char, format: *const ::c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:625:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
625 | pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
625 | pub fn sscanf(s: *const ::c_char, format: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
625 - pub fn sscanf(s: *const ::c_char, format: *const ::c_char, ...) -> ::c_int;
625 + pub fn sscanf(s: *const ::c_char, format: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:752:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
752 | pub fn chmod(path: *const c_char, mode: mode_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
752 | pub fn chmod(path: *const c_schar, mode: mode_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0573]: expected type, found function `stat`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:768:45
|
768 | pub fn fstat(fildes: ::c_int, buf: *mut stat) -> ::c_int;
| ^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:770:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
770 | pub fn mkdir(path: *const c_char, mode: mode_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
770 | pub fn mkdir(path: *const c_schar, mode: mode_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:781:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
781 | pub fn stat(path: *const c_char, buf: *mut stat) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
781 | pub fn stat(path: *const c_schar, buf: *mut stat) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0573]: expected type, found function `stat`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:781:48
|
781 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:788:45
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
788 | pub fn fdopen(fd: ::c_int, mode: *const c_char) -> *mut ::FILE;
| ^^^^^^
|
help: a type alias with a similar name exists
|
788 | pub fn fdopen(fd: ::c_int, mode: *const c_schar) -> *mut ::FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:795:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
795 | pub fn open(path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
795 | pub fn open(path: *const c_schar, oflag: ::c_int, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:800:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
800 | pub fn creat(path: *const c_char, mode: mode_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
800 | pub fn creat(path: *const c_schar, mode: mode_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:816:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
816 | pub fn opendir(dirname: *const c_char) -> *mut ::DIR;
| ^^^^^^
|
help: a type alias with a similar name exists
|
816 | pub fn opendir(dirname: *const c_schar) -> *mut ::DIR;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:845:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
845 | pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
845 | pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
845 - pathname: *const ::c_char,
845 + pathname: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:852:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
852 | pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
852 | pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
852 - pathname: *const ::c_char,
852 + pathname: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:867:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
867 | pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
867 | pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
867 - pathname: *const ::c_char,
867 + pathname: *const c_char,
|
error[E0573]: expected type, found function `stat`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:868:19
|
868 | buf: *mut stat,
| ^^^^ not a type
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:873:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
873 | oldpath: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
873 | oldpath: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
873 - oldpath: *const ::c_char,
873 + oldpath: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:875:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
875 | newpath: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
875 | newpath: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
875 - newpath: *const ::c_char,
875 + newpath: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:880:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
880 | oldpath: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
880 | oldpath: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
880 - oldpath: *const ::c_char,
880 + oldpath: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:882:27
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
882 | newpath: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
882 | newpath: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
882 - newpath: *const ::c_char,
882 + newpath: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:885:26
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
885 | target: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
885 | target: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
885 - target: *const ::c_char,
885 + target: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:887:28
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
887 | linkpath: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
887 | linkpath: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
887 - linkpath: *const ::c_char,
887 + linkpath: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:889:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
889 | pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
889 | pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_schar, flags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
889 - pub fn unlinkat(dirfd: ::c_int, pathname: *const ::c_char, flags: ::c_int) -> ::c_int;
889 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:891:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
891 | pub fn access(path: *const c_char, amode: ::c_int) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
891 | pub fn access(path: *const c_schar, amode: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:893:30
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
893 | pub fn chdir(dir: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
893 | pub fn chdir(dir: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:895:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
895 | pub fn chown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
895 | pub fn chown(path: *const c_schar, uid: uid_t, gid: gid_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:900:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
900 | pub fn lchown(path: *const c_char, uid: uid_t, gid: gid_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
900 | pub fn lchown(path: *const c_schar, uid: uid_t, gid: gid_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:912:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
912 | pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
912 | pub fn execl(path: *const c_schar, arg0: *const c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:912:52
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
912 | pub fn execl(path: *const c_char, arg0: *const c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
912 | pub fn execl(path: *const c_char, arg0: *const c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:913:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
913 | pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
913 | pub fn execle(path: *const ::c_schar, arg0: *const ::c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
913 - pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
913 + pub fn execle(path: *const c_char, arg0: *const ::c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:913:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
913 | pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
913 | pub fn execle(path: *const ::c_char, arg0: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
913 - pub fn execle(path: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
913 + pub fn execle(path: *const ::c_char, arg0: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:914:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
914 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
914 | pub fn execlp(file: *const ::c_schar, arg0: *const ::c_char, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
914 - pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
914 + pub fn execlp(file: *const c_char, arg0: *const ::c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:914:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
914 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
914 | pub fn execlp(file: *const ::c_char, arg0: *const ::c_schar, ...) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
914 - pub fn execlp(file: *const ::c_char, arg0: *const ::c_char, ...) -> ::c_int;
914 + pub fn execlp(file: *const ::c_char, arg0: *const c_char, ...) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:915:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
915 | pub fn execv(prog: *const c_char, argv: *const *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
915 | pub fn execv(prog: *const c_schar, argv: *const *const c_char) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:915:59
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
915 | pub fn execv(prog: *const c_char, argv: *const *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
915 | pub fn execv(prog: *const c_char, argv: *const *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:917:22
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
917 | prog: *const c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
917 | prog: *const c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:918:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
918 | argv: *const *const c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
918 | argv: *const *const c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:919:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
919 | envp: *const *const c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
919 | envp: *const *const c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:921:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
921 | pub fn execvp(c: *const c_char, argv: *const *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
921 | pub fn execvp(c: *const c_schar, argv: *const *const c_char) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:921:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
921 | pub fn execvp(c: *const c_char, argv: *const *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
921 | pub fn execvp(c: *const c_char, argv: *const *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:923:58
|
923 | pub fn fpathconf(filedes: ::c_int, name: ::c_int) -> c_long;
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:924:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
924 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
924 | pub fn getcwd(buf: *mut c_schar, size: ::size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:924:61
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
924 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
924 | pub fn getcwd(buf: *mut c_char, size: ::size_t) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:930:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
930 | pub fn getlogin() -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
930 | pub fn getlogin() -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:935:52
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
935 | 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
|
935 | pub fn getopt(argc: ::c_int, argv: *const *mut c_schar, optstr: *const c_char) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:935:75
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
935 | 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
|
935 | pub fn getopt(argc: ::c_int, argv: *const *mut c_char, optstr: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:943:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
943 | pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
943 | pub fn link(src: *const c_schar, dst: *const c_char) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:943:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
943 | pub fn link(src: *const c_char, dst: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
943 | pub fn link(src: *const c_char, dst: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:944:39
|
944 | pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:944:66
|
944 | pub fn lseek(fd: ::c_int, offset: off_t, whence: ::c_int) -> off_t;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:945:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
945 | pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
| ^^^^^^
|
help: a type alias with a similar name exists
|
945 | pub fn pathconf(path: *const c_schar, name: ::c_int) -> c_long;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:945:60
|
945 | pub fn pathconf(path: *const c_char, name: ::c_int) -> c_long;
| ^^^^^^ not found in this scope
|
help: consider importing this type alias
|
1639+ use ffi::c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:953:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
953 | pub fn rmdir(path: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
953 | pub fn rmdir(path: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:975:41
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
975 | pub fn ttyname(fd: ::c_int) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
975 | pub fn ttyname(fd: ::c_int) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:984:45
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
984 | 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
|
984 | pub fn ttyname_r(fd: ::c_int, buf: *mut c_schar, buflen: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:985:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
985 | pub fn unlink(c: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
985 | pub fn unlink(c: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639+ use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1005:76
|
1005 | pub fn pread(fd: ::c_int, buf: *mut ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1010:79
|
1010 | pub fn pwrite(fd: ::c_int, buf: *const ::c_void, count: ::size_t, offset: off_t) -> ::ssize_t;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1014:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1014 | pub fn utime(file: *const c_char, buf: *const utimbuf) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1014 | pub fn utime(file: *const c_schar, buf: *const utimbuf) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1042:17
|
1042 | offset: off_t,
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1050:42
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1050 | pub fn if_nametoindex(ifname: *const c_char) -> ::c_uint;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1050 | pub fn if_nametoindex(ifname: *const c_schar) -> ::c_uint;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1051:61
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1051 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1051 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1051 - pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char;
1051 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1051:79
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1051 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1051 | pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1051 - pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut ::c_char;
1051 + pub fn if_indextoname(ifindex: ::c_uint, ifname: *mut ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1062:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1062 | pub fn lstat(path: *const c_char, buf: *mut stat) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1062 | pub fn lstat(path: *const c_schar, buf: *mut stat) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0573]: expected type, found function `stat`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1062:49
|
1062 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1074:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1074 | 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
|
1074 | pub fn setenv(name: *const c_schar, val: *const c_char, overwrite: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1074:52
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1074 | 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
|
1074 | pub fn setenv(name: *const c_char, val: *const c_schar, overwrite: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1080:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1080 | pub fn unsetenv(name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1080 | pub fn unsetenv(name: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1082:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1082 | pub fn symlink(path1: *const c_char, path2: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1082 | pub fn symlink(path1: *const c_schar, path2: *const c_char) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1082:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1082 | pub fn symlink(path1: *const c_char, path2: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1082 | pub fn symlink(path1: *const c_char, path2: *const c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1084:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1084 | pub fn truncate(path: *const c_char, length: off_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1084 | pub fn truncate(path: *const c_schar, length: off_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1084:50
|
1084 | pub fn truncate(path: *const c_char, length: off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1085:43
|
1085 | pub fn ftruncate(fd: ::c_int, length: off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1102:40
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1102 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1102 | pub fn realpath(pathname: *const ::c_schar, resolved: *mut ::c_char) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1102 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
1102 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1102:65
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1102 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1102 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1102 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
1102 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1102:83
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1102 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1102 | pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1102 - pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut ::c_char;
1102 + pub fn realpath(pathname: *const ::c_char, resolved: *mut ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `clock_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1105:40
|
1105 | pub fn times(buf: *mut ::tms) -> ::clock_t;
| ^^^^^^^ help: a type alias with a similar name exists: `clockid_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:4:1
|
4 | pub type clockid_t = ::c_int;
| ----------------------------- similarly named type alias `clockid_t` defined here
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1107:32
|
1107 | pub fn pthread_self() -> ::pthread_t;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1108:32
|
1108 | pub fn pthread_equal(t1: ::pthread_t, t2: ::pthread_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1108:49
|
1108 | pub fn pthread_equal(t1: ::pthread_t, t2: ::pthread_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1113:35
|
1113 | pub fn pthread_join(native: ::pthread_t, value: *mut *mut ::c_void) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_attr_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1115:43
|
1115 | pub fn pthread_attr_init(attr: *mut ::pthread_attr_t) -> ::c_int;
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1116:46
|
1116 | pub fn pthread_attr_destroy(attr: *mut ::pthread_attr_t) -> ::c_int;
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1118:24
|
1118 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1121:51
|
1121 | 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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1122:53
|
1122 | 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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:112:13
|
112 | pub struct $i { $($field)* }
| ------------- similarly named struct `pthread_cond_t` defined here
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1123:37
|
1123 | pub fn pthread_detach(thread: ::pthread_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1231:38
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1231 | pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1231 | pub fn utimes(filename: *const ::c_schar, times: *const ::timeval) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1231 - pub fn utimes(filename: *const ::c_char, times: *const ::timeval) -> ::c_int;
1231 + pub fn utimes(filename: *const c_char, times: *const ::timeval) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1232:38
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1232 | pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1232 | pub fn dlopen(filename: *const ::c_schar, flag: ::c_int) -> *mut ::c_void;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1232 - pub fn dlopen(filename: *const ::c_char, flag: ::c_int) -> *mut ::c_void;
1232 + pub fn dlopen(filename: *const c_char, flag: ::c_int) -> *mut ::c_void;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1233:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1233 | pub fn dlerror() -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1233 | pub fn dlerror() -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1233 - pub fn dlerror() -> *mut ::c_char;
1233 + pub fn dlerror() -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1234:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1234 | pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1234 | pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_schar) -> *mut ::c_void;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1234 - pub fn dlsym(handle: *mut ::c_void, symbol: *const ::c_char) -> *mut ::c_void;
1234 + pub fn dlsym(handle: *mut ::c_void, symbol: *const c_char) -> *mut ::c_void;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1248:22
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1248 | node: *const c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1248 | node: *const c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1249:25
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1249 | service: *const c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1249 | service: *const c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1260:52
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1260 | pub fn hstrerror(errcode: ::c_int) -> *const ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1260 | pub fn hstrerror(errcode: ::c_int) -> *const ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1260 - pub fn hstrerror(errcode: ::c_int) -> *const ::c_char;
1260 + pub fn hstrerror(errcode: ::c_int) -> *const c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1261:55
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1261 | pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1261 | pub fn gai_strerror(errcode: ::c_int) -> *const ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1261 - pub fn gai_strerror(errcode: ::c_int) -> *const ::c_char;
1261 + pub fn gai_strerror(errcode: ::c_int) -> *const c_char;
|
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1289:36
|
1289 | pub fn gmtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1293:39
|
1293 | pub fn localtime_r(time_p: *const time_t, result: *mut tm) -> *mut tm;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1301:35
|
1301 | pub fn mktime(tm: *mut tm) -> time_t;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1305:28
|
1305 | pub fn time(time: *mut time_t) -> time_t;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1305:39
|
1305 | pub fn time(time: *mut time_t) -> time_t;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1309:34
|
1309 | pub fn gmtime(time_p: *const time_t) -> *mut tm;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1313:37
|
1313 | pub fn localtime(time_p: *const time_t) -> *mut tm;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1317:28
|
1317 | pub fn difftime(time1: time_t, time0: time_t) -> ::c_double;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1317:43
|
1317 | pub fn difftime(time1: time_t, time0: time_t) -> ::c_double;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `time_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1321:37
|
1321 | pub fn timegm(tm: *mut ::tm) -> time_t;
| ^^^^^^ help: a type alias with a similar name exists: `timer_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:5:1
|
5 | pub type timer_t = *mut ::c_void;
| --------------------------------- similarly named type alias `timer_t` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1328:37
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1328 | pub fn mknod(pathname: *const ::c_char, mode: ::mode_t, dev: ::dev_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1328 | pub fn mknod(pathname: *const ::c_schar, mode: ::mode_t, dev: ::dev_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1328 - pub fn mknod(pathname: *const ::c_char, mode: ::mode_t, dev: ::dev_t) -> ::c_int;
1328 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1329:37
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1329 | pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1329 | pub fn gethostname(name: *mut ::c_schar, len: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1329 - pub fn gethostname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
1329 + pub fn gethostname(name: *mut c_char, len: ::size_t) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1331:41
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1331 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1331 | pub fn getservbyname(name: *const ::c_schar, proto: *const ::c_char) -> *mut servent;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1331 - pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent;
1331 + pub fn getservbyname(name: *const c_char, proto: *const ::c_char) -> *mut servent;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1331:65
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1331 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1331 | pub fn getservbyname(name: *const ::c_char, proto: *const ::c_schar) -> *mut servent;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1331 - pub fn getservbyname(name: *const ::c_char, proto: *const ::c_char) -> *mut servent;
1331 + pub fn getservbyname(name: *const ::c_char, proto: *const c_char) -> *mut servent;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1332:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1332 | pub fn getservbyport(port: ::c_int, proto: *const ::c_char) -> *mut servent;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1332 | pub fn getservbyport(port: ::c_int, proto: *const ::c_schar) -> *mut servent;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1332 - pub fn getservbyport(port: ::c_int, proto: *const ::c_char) -> *mut servent;
1332 + pub fn getservbyport(port: ::c_int, proto: *const c_char) -> *mut servent;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1335:42
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1335 | pub fn getprotobyname(name: *const ::c_char) -> *mut protoent;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1335 | pub fn getprotobyname(name: *const ::c_schar) -> *mut protoent;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1335 - pub fn getprotobyname(name: *const ::c_char) -> *mut protoent;
1335 + pub fn getprotobyname(name: *const c_char) -> *mut protoent;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1337:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1337 | pub fn chroot(name: *const ::c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1337 | pub fn chroot(name: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1337 - pub fn chroot(name: *const ::c_char) -> ::c_int;
1337 + pub fn chroot(name: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1360:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1360 | pub fn putenv(string: *mut c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1360 | pub fn putenv(string: *mut c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1383:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1383 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1383 | pub fn setlocale(category: ::c_int, locale: *const ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1383 - pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
1383 + pub fn setlocale(category: ::c_int, locale: *const c_char) -> *mut ::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1383:76
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1383 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1383 | pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1383 - pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut ::c_char;
1383 + pub fn setlocale(category: ::c_int, locale: *const ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `sem_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1390:31
|
1390 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1391:34
|
1391 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1392:31
|
1392 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1393:33
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1393 | pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1393 | pub fn statvfs(path: *const c_schar, buf: *mut statvfs) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0573]: expected type, found function `statvfs`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1393:51
|
1393 | pub fn statvfs(path: *const c_char, buf: *mut statvfs) -> ::c_int;
| ^^^^^^^ not a type
error[E0573]: expected type, found function `statvfs`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1394:44
|
1394 | pub fn fstatvfs(fd: ::c_int, buf: *mut statvfs) -> ::c_int;
| ^^^^^^^ not a type
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1397:34
|
1397 | pub fn sigemptyset(set: *mut sigset_t) -> ::c_int;
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1399:32
|
1399 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1401:33
|
1401 | pub fn sigfillset(set: *mut sigset_t) -> ::c_int;
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1403:32
|
1403 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1405:36
|
1405 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1408:50
|
1408 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1408:73
|
1408 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1410:33
|
1410 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1413:40
|
1413 | pub fn sysconf(name: ::c_int) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
1639 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
1413 - pub fn sysconf(name: ::c_int) -> ::c_long;
1413 + pub fn sysconf(name: ::c_int) -> c_long;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1415:32
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1415 | pub fn mkfifo(path: *const c_char, mode: mode_t) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1415 | pub fn mkfifo(path: *const c_schar, mode: mode_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1417:50
|
1417 | pub fn fseeko(stream: *mut ::FILE, offset: ::off_t, whence: ::c_int) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1418:45
|
1418 | pub fn ftello(stream: *mut ::FILE) -> ::off_t;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1424:42
|
1424 | pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1425:42
|
1425 | pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1426:40
|
1426 | pub fn cfsetispeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1427:40
|
1427 | pub fn cfsetospeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1428:51
|
1428 | pub fn tcgetattr(fd: ::c_int, termios: *mut ::termios) -> ::c_int;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1429:80
|
1429 | pub fn tcsetattr(fd: ::c_int, optional_actions: ::c_int, termios: *const ::termios) -> ::c_int;
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1434:37
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1434 | pub fn mkstemp(template: *mut ::c_char) -> ::c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1434 | pub fn mkstemp(template: *mut ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1434 - pub fn mkstemp(template: *mut ::c_char) -> ::c_int;
1434 + pub fn mkstemp(template: *mut c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1435:37
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1435 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1435 | pub fn mkdtemp(template: *mut ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1435 - pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
1435 + pub fn mkdtemp(template: *mut c_char) -> *mut ::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1435:55
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1435 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1435 | pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1435 - pub fn mkdtemp(template: *mut ::c_char) -> *mut ::c_char;
1435 + pub fn mkdtemp(template: *mut ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1437:31
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1437 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1437 | pub fn tmpnam(ptr: *mut ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1437 - pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
1437 + pub fn tmpnam(ptr: *mut c_char) -> *mut ::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1437:49
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1437 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1437 | pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1437 - pub fn tmpnam(ptr: *mut ::c_char) -> *mut ::c_char;
1437 + pub fn tmpnam(ptr: *mut ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1439:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1439 | pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int);
| ^^^^^^
|
help: a type alias with a similar name exists
|
1439 | pub fn openlog(ident: *const ::c_schar, logopt: ::c_int, facility: ::c_int);
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1439 - pub fn openlog(ident: *const ::c_char, logopt: ::c_int, facility: ::c_int);
1439 + pub fn openlog(ident: *const c_char, logopt: ::c_int, facility: ::c_int);
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1443:56
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1443 | pub fn syslog(priority: ::c_int, message: *const ::c_char, ...);
| ^^^^^^
|
help: a type alias with a similar name exists
|
1443 | pub fn syslog(priority: ::c_int, message: *const ::c_schar, ...);
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1443 - pub fn syslog(priority: ::c_int, message: *const ::c_char, ...);
1443 + pub fn syslog(priority: ::c_int, message: *const c_char, ...);
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1452:43
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1452 | pub fn ptsname(fd: ::c_int) -> *mut ::c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1452 | pub fn ptsname(fd: ::c_int) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1452 - pub fn ptsname(fd: ::c_int) -> *mut ::c_char;
1452 + pub fn ptsname(fd: ::c_int) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1455:34
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1455 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1455 | pub fn strcasestr(cs: *const c_schar, ct: *const c_char) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1455:53
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1455 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1455 | pub fn strcasestr(cs: *const c_char, ct: *const c_schar) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1455:69
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1455 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_char;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1455 | pub fn strcasestr(cs: *const c_char, ct: *const c_char) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1456:39
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1456 | 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
|
1456 | pub fn getline(lineptr: *mut *mut c_schar, n: *mut size_t, stream: *mut FILE) -> ssize_t;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1458:52
|
1458 | pub fn lockf(fd: ::c_int, cmd: ::c_int, len: ::off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1483:38
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1483 | 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
|
1483 | pub fn stpncpy(dst: *mut c_schar, src: *const c_char, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1483:58
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1483 | 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
|
1483 | pub fn stpncpy(dst: *mut c_char, src: *const c_schar, n: size_t) -> *mut c_char;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1483:85
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1483 | 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
|
1483 | pub fn stpncpy(dst: *mut c_char, src: *const c_char, n: size_t) -> *mut c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `wchar_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1508:32
|
1508 | ptr: *mut *mut wchar_t,
| ^^^^^^^ not found in this scope
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1523:63
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1523 | pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1523 | pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1523 - pub fn mkdirat(dirfd: ::c_int, pathname: *const ::c_char,
1523 + pub fn mkdirat(dirfd: ::c_int, pathname: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1525:62
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1525 | pub fn openat(dirfd: ::c_int, pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1525 | pub fn openat(dirfd: ::c_int, pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1525 - pub fn openat(dirfd: ::c_int, pathname: *const ::c_char,
1525 + pub fn openat(dirfd: ::c_int, pathname: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1579:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1579 | pathname: *const ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1579 | pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1579 - pathname: *const ::c_char,
1579 + pathname: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1580:29
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1580 | buf: *mut ::c_char,
| ^^^^^^
|
help: a type alias with a similar name exists
|
1580 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1580 - buf: *mut ::c_char,
1580 + buf: *mut c_char,
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1582:74
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1582 | 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
|
1582 | pub fn fmemopen(buf: *mut c_void, size: size_t, mode: *const c_schar) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1583:50
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1583 | pub fn open_memstream(ptr: *mut *mut c_char, sizeloc: *mut size_t) -> *mut FILE;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1583 | pub fn open_memstream(ptr: *mut *mut c_schar, sizeloc: *mut size_t) -> *mut FILE;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0573]: expected type, found function `sigaction`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1588:29
|
1588 | act: *const sigaction,
| ^^^^^^^^^ not a type
error[E0573]: expected type, found function `sigaction`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1589:30
|
1589 | oldact: *mut sigaction
| ^^^^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1591:42
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1591 | 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
|
1591 | pub fn readlink(path: *const c_schar, buf: *mut c_char, bufsz: ::size_t) -> ::ssize_t;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1591:60
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1591 | 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
|
1591 | pub fn readlink(path: *const c_char, buf: *mut c_schar, bufsz: ::size_t) -> ::ssize_t;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1607:33
|
1607 | sigmask: *const sigset_t,
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1619:46
|
1619 | pub fn cfmakeraw(termios: *mut ::termios);
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `termios` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1620:47
|
1620 | pub fn cfsetspeed(termios: *mut ::termios,
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1627:36
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1627 | pub fn fnmatch(pattern: *const c_char, name: *const c_char, flags: c_int) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1627 | pub fn fnmatch(pattern: *const c_schar, name: *const c_char, flags: c_int) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/mod.rs:1627:57
|
6 | pub type c_schar = i8;
| ---------------------- similarly named type alias `c_schar` defined here
...
1627 | pub fn fnmatch(pattern: *const c_char, name: *const c_char, flags: c_int) -> c_int;
| ^^^^^^
|
help: a type alias with a similar name exists
|
1627 | pub fn fnmatch(pattern: *const c_char, name: *const c_schar, flags: c_int) -> c_int;
| ~~~~~~~
help: consider importing this type alias
|
1639 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:38:25
|
38 | pub sa_data: [::c_char; 14],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
190+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
190+ use ffi::c_char;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
190+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:102:31
|
102 | pub tm_zone: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:118:33
|
118 | pub dli_fname: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:120:33
|
120 | pub dli_sname: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:125:35
|
125 | pub decimal_point: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:126:35
|
126 | pub thousands_sep: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:127:30
|
127 | pub grouping: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:128:37
|
128 | pub int_curr_symbol: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:129:37
|
129 | pub currency_symbol: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:130:39
|
130 | pub mon_decimal_point: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:131:39
|
131 | pub mon_thousands_sep: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:132:34
|
132 | pub mon_grouping: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:133:35
|
133 | pub positive_sign: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:134:35
|
134 | pub negative_sign: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:135:32
|
135 | pub int_frac_digits: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:136:28
|
136 | pub frac_digits: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:137:30
|
137 | pub p_cs_precedes: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:138:31
|
138 | pub p_sep_by_space: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:139:30
|
139 | pub n_cs_precedes: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:140:31
|
140 | pub n_sep_by_space: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:141:28
|
141 | pub p_sign_posn: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:142:28
|
142 | pub n_sign_posn: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:143:34
|
143 | pub int_p_cs_precedes: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:144:35
|
144 | pub int_p_sep_by_space: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:145:34
|
145 | pub int_n_cs_precedes: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:146:35
|
146 | pub int_n_sep_by_space: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:147:32
|
147 | pub int_p_sign_posn: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:148:32
|
148 | pub int_n_sign_posn: ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ use ffi::c_char;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:185:25
|
185 | pub arp_dev: [::c_char; 16],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:204:24
|
204 | pub msg_hdr: ::msghdr,
| ^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:225:26
|
225 | pub sun_path: [::c_char; 108]
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:238:25
|
238 | pub sysname: [::c_char; 65],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:239:26
|
239 | pub nodename: [::c_char; 65],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:240:25
|
240 | pub release: [::c_char; 65],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:241:25
|
241 | pub version: [::c_char; 65],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:242:25
|
242 | pub machine: [::c_char; 65],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:243:28
|
243 | pub domainname: [::c_char; 65]
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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[E0425]: cannot find value `O_CLOEXEC` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:506:35
|
506 | pub const SOCK_CLOEXEC: ::c_int = O_CLOEXEC;
| ^^^^^^^^^ help: a constant with a similar name exists: `IN_CLOEXEC`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4070:1
|
4070 | pub const IN_CLOEXEC: ::c_int = O_CLOEXEC;
| ------------------------------------------ similarly named constant `IN_CLOEXEC` defined here
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + use ffi::c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1542:64
|
1542 | if (*mhdr).msg_controllen as usize >= ::mem::size_of::<cmsghdr>() {
| ^^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1543:41
|
1543 | (*mhdr).msg_control as *mut cmsghdr
| ^^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1545:23
|
1545 | 0 as *mut cmsghdr
| ^^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1554:68
|
1554 | (CMSG_ALIGN(length as usize) + CMSG_ALIGN(::mem::size_of::<cmsghdr>()))
| ^^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1559:37
|
1559 | CMSG_ALIGN(::mem::size_of::<cmsghdr>()) as ::c_uint + length
| ^^^^^^^ help: a struct with a similar name exists: `mmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1685:41
|
1685 | pub fn pthread_getattr_np(native: ::pthread_t, attr: *mut ::pthread_attr_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_attr_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1694:34
|
1694 | pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1694:52
|
1694 | pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int;
| ^^^^^^ not a type
error[E0573]: expected type, found function `statfs`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1695:43
|
1695 | pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int;
| ^^^^^^ not a type
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1697:49
|
1697 | pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1697:63
|
1697 | pub fn posix_fadvise(fd: ::c_int, offset: ::off_t, len: ::off_t, advise: ::c_int) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:15:1
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1701:24
|
1701 | path: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1707:54
|
1707 | pub fn newlocale(mask: ::c_int, locale: *const ::c_char, base: ::locale_t) -> ::locale_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1711:28
|
1711 | pathname: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1739:36
|
1739 | pub fn acct(filename: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1757:24
|
1757 | file: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1758:31
|
1758 | argv: *const *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1759:31
|
1759 | envp: *const *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1763:31
|
1763 | argv: *const *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1764:31
|
1764 | envp: *const *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1777:34
|
1777 | pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1777:64
|
1777 | pub fn strchrnul(s: *const ::c_char, c: ::c_int) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1904 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1780:19
|
1780 | s: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1780 | s: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1780 - s: *mut ::c_char,
1780 + s: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1782:26
|
1782 | format: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1782 | format: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1782 - format: *const ::c_char,
1782 + format: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1786:19
|
1786 | s: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1786 | s: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1786 - s: *mut ::c_char,
1786 + s: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1788:26
|
1788 | format: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1788 | format: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1788 - format: *const ::c_char,
1788 + format: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1792:33
|
1792 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1792 | pub fn strptime(s: *const ::c_schar, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1792 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
1792 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1792:58
|
1792 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1792 | pub fn strptime(s: *const ::c_char, format: *const ::c_schar, tm: *mut ::tm) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1792 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
1792 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1792:91
|
1792 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1792 | pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1792 - pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut ::c_char;
1792 + pub fn strptime(s: *const ::c_char, format: *const ::c_char, tm: *mut ::tm) -> *mut c_char;
|
error[E0573]: expected type, found function `statfs64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1802:53
|
1802 | pub fn fstatfs64(fd: ::c_int, buf: *mut statfs64) -> ::c_int;
| ^^^^^^^^ not a type
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1803:45
|
1803 | pub fn statvfs64(path: *const ::c_char, buf: *mut statvfs64) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1803 | pub fn statvfs64(path: *const ::c_schar, buf: *mut statvfs64) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1803 - pub fn statvfs64(path: *const ::c_char, buf: *mut statvfs64) -> ::c_int;
1803 + pub fn statvfs64(path: *const c_char, buf: *mut statvfs64) -> ::c_int;
|
error[E0573]: expected type, found function `statvfs64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1803:63
|
1803 | pub fn statvfs64(path: *const ::c_char, buf: *mut statvfs64) -> ::c_int;
| ^^^^^^^^^ not a type
error[E0573]: expected type, found function `statvfs64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1804:54
|
1804 | pub fn fstatvfs64(fd: ::c_int, buf: *mut statvfs64) -> ::c_int;
| ^^^^^^^^^ not a type
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1805:44
|
1805 | pub fn statfs64(path: *const ::c_char, buf: *mut statfs64) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1805 | pub fn statfs64(path: *const ::c_schar, buf: *mut statfs64) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1805 - pub fn statfs64(path: *const ::c_char, buf: *mut statfs64) -> ::c_int;
1805 + pub fn statfs64(path: *const c_char, buf: *mut statfs64) -> ::c_int;
|
error[E0573]: expected type, found function `statfs64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1805:62
|
1805 | pub fn statfs64(path: *const ::c_char, buf: *mut statfs64) -> ::c_int;
| ^^^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1806:41
|
1806 | pub fn creat64(path: *const c_char, mode: mode_t) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1806 | pub fn creat64(path: *const char, mode: mode_t) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0573]: expected type, found function `stat64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1807:55
|
1807 | pub fn fstat64(fildes: ::c_int, buf: *mut stat64) -> ::c_int;
| ^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1810:34
|
1810 | pathname: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1810 | pathname: *const char,
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0573]: expected type, found function `stat64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1811:27
|
1811 | buf: *mut stat64,
| ^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1816:41
|
1816 | pub fn lstat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1816 | pub fn lstat64(path: *const char, buf: *mut stat64) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0573]: expected type, found function `stat64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1816:59
|
1816 | pub fn lstat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
| ^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1825:40
|
1825 | pub fn open64(path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1825 | pub fn open64(path: *const char, oflag: ::c_int, ...) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1826:55
|
1826 | pub fn openat64(fd: ::c_int, path: *const c_char, oflag: ::c_int, ...) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1826 | pub fn openat64(fd: ::c_int, path: *const char, oflag: ::c_int, ...) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1851:40
|
1851 | pub fn stat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1851 | pub fn stat64(path: *const char, buf: *mut stat64) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0573]: expected type, found function `stat64`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1851:58
|
1851 | pub fn stat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
| ^^^^^^ not a type
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1852:44
|
1852 | pub fn truncate64(path: *const c_char, length: off64_t) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
1852 | pub fn truncate64(path: *const char, length: off64_t) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1882:30
|
1882 | name: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1882 | name: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1882 - name: *mut ::c_char,
1882 + name: *mut c_char,
|
error[E0412]: cannot find type `termios` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1883:31
|
1883 | termp: *const termios,
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1890:30
|
1890 | name: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1890 | name: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
1904 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1890 - name: *mut ::c_char,
1890 + name: *mut c_char,
|
error[E0412]: cannot find type `termios` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/mod.rs:1891:31
|
1891 | termp: *const termios,
| ^^^^^^^ help: a struct with a similar name exists: `termios2`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `termios2` defined here
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
596+ 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:74:33
|
74 | pub gl_pathv: *mut *mut c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
74 | pub gl_pathv: *mut *mut char,
| ~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:86:29
|
86 | pub pw_name: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 pw_name: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
86 - pub pw_name: *mut ::c_char,
86 + pub pw_name: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:87:31
|
87 | pub pw_passwd: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 pw_passwd: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
87 - pub pw_passwd: *mut ::c_char,
87 + pub pw_passwd: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:90:30
|
90 | pub pw_gecos: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
90 | pub pw_gecos: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
90 - pub pw_gecos: *mut ::c_char,
90 + pub pw_gecos: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:91:28
|
91 | pub pw_dir: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
91 | pub pw_dir: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
91 - pub pw_dir: *mut ::c_char,
91 + pub pw_dir: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:92:30
|
92 | pub pw_shell: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
92 | pub pw_shell: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
92 - pub pw_shell: *mut ::c_char,
92 + pub pw_shell: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:96:29
|
96 | pub sp_namp: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
96 | pub sp_namp: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
96 - pub sp_namp: *mut ::c_char,
96 + pub sp_namp: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:97:29
|
97 | pub sp_pwdp: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
97 | pub sp_pwdp: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
596+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
97 - pub sp_pwdp: *mut ::c_char,
97 + pub sp_pwdp: *mut c_char,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:98:26
|
98 | pub sp_lstchg: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
596+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
98 - pub sp_lstchg: ::c_long,
98 + pub sp_lstchg: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:99:23
|
99 | pub sp_min: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
596+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
99 - pub sp_min: ::c_long,
99 + pub sp_min: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:100:23
|
100 | pub sp_max: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
100 - pub sp_max: ::c_long,
100 + pub sp_max: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:101:24
|
101 | pub sp_warn: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
101 - pub sp_warn: ::c_long,
101 + pub sp_warn: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:102:25
|
102 | pub sp_inact: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
102 - pub sp_inact: ::c_long,
102 + pub sp_inact: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:103:26
|
103 | pub sp_expire: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
103 - pub sp_expire: ::c_long,
103 + pub sp_expire: c_long,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:104:24
|
104 | pub sp_flag: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
104 - pub sp_flag: ::c_ulong,
104 + pub sp_flag: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:186:26
|
186 | pub tp_status: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
186 - pub tp_status: ::c_ulong,
186 + pub tp_status: c_ulong,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:272:29
|
272 | pub if_name: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
272 | pub if_name: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
272 - pub if_name: *mut ::c_char,
272 + pub if_name: *mut c_char,
|
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:327:26
|
327 | pub codes_ptr: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:424:33
|
424 | pub dlpi_name: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
424 | pub dlpi_name: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
424 - pub dlpi_name: *const ::c_char,
424 + pub dlpi_name: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:573:32
|
573 | pub mnt_fsname: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
573 | pub mnt_fsname: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
573 - pub mnt_fsname: *mut ::c_char,
573 + pub mnt_fsname: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:574:29
|
574 | pub mnt_dir: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
574 | pub mnt_dir: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
574 - pub mnt_dir: *mut ::c_char,
574 + pub mnt_dir: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:575:30
|
575 | pub mnt_type: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
575 | pub mnt_type: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
575 - pub mnt_type: *mut ::c_char,
575 + pub mnt_type: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:576:30
|
576 | pub mnt_opts: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
576 | pub mnt_opts: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
576 - pub mnt_opts: *mut ::c_char,
576 + pub mnt_opts: *mut c_char,
|
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:591:17
|
591 | __sd: ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:592:17
|
592 | __ss: ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:615:20
|
615 | pub dev: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
615 - pub dev: ::c_ulong,
615 + pub dev: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:616:22
|
616 | pub stamp: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
616 - pub stamp: ::c_ulong,
616 + pub stamp: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:617:24
|
617 | pub updated: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
617 - pub updated: ::c_ulong,
617 + pub updated: c_ulong,
|
error[E0412]: cannot find type `regoff_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:654:20
|
654 | pub rm_so: regoff_t,
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `regoff_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:655:20
|
655 | pub rm_eo: regoff_t,
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:712:36
|
712 | pub instruction_pointer: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:713:22
|
713 | pub args: [::__u64; 6],
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:723:19
|
723 | pub id: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:730:19
|
730 | pub id: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__s64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:731:20
|
731 | pub val: ::__s64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:737:19
|
737 | pub id: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__s64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:763:23
|
763 | pub src_fd: ::__s64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:764:27
|
764 | pub src_offset: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:765:27
|
765 | pub src_length: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:766:28
|
766 | pub dest_offset: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:770:26
|
770 | pub mem_start: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
770 - pub mem_start: ::c_ulong,
770 + pub mem_start: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:771:24
|
771 | pub mem_end: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
771 - pub mem_end: ::c_ulong,
771 + pub mem_end: c_ulong,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:785:28
|
785 | pub name: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
785 | pub name: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
785 - pub name: *const ::c_char,
785 + pub name: *const c_char,
|
error[E0412]: cannot find type `ino_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:903:22
|
903 | pub d_ino: ::ino_t,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:904:22
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
904 | pub d_off: ::off_t,
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:907:24
|
907 | pub d_name: [::c_char; 256],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
907 | pub d_name: [::c_schar; 256],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
907 - pub d_name: [::c_char; 256],
907 + pub d_name: [c_char; 256],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:920:22
|
920 | pub name: [::c_char; UINPUT_MAX_NAME_SIZE],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
920 | pub name: [::c_schar; UINPUT_MAX_NAME_SIZE],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
920 - pub name: [::c_char; UINPUT_MAX_NAME_SIZE],
920 + pub name: [c_char; UINPUT_MAX_NAME_SIZE],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:925:22
|
925 | pub name: [::c_char; UINPUT_MAX_NAME_SIZE],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
925 | pub name: [::c_schar; UINPUT_MAX_NAME_SIZE],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
925 - pub name: [::c_char; UINPUT_MAX_NAME_SIZE],
925 + pub name: [c_char; UINPUT_MAX_NAME_SIZE],
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:961:25
|
961 | pub mq_flags: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
961 - pub mq_flags: ::c_long,
961 + pub mq_flags: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:963:26
|
963 | pub mq_maxmsg: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
963 - pub mq_maxmsg: ::c_long,
963 + pub mq_maxmsg: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:965:27
|
965 | pub mq_msgsize: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
965 - pub mq_msgsize: ::c_long,
965 + pub mq_msgsize: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:967:27
|
967 | pub mq_curmsgs: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
967 - pub mq_curmsgs: ::c_long,
967 + pub mq_curmsgs: c_long,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:969:17
|
969 | pad: [::c_long; 4],
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966+ use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
969 - pad: [::c_long; 4],
969 + pad: [c_long; 4],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:984:28
|
984 | pub ifru_slave: [::c_char; ::IFNAMSIZ],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
984 | pub ifru_slave: [::c_schar; ::IFNAMSIZ],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
984 - pub ifru_slave: [::c_char; ::IFNAMSIZ],
984 + pub ifru_slave: [c_char; ::IFNAMSIZ],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:985:30
|
985 | pub ifru_newname: [::c_char; ::IFNAMSIZ],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
985 | pub ifru_newname: [::c_schar; ::IFNAMSIZ],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
985 - pub ifru_newname: [::c_char; ::IFNAMSIZ],
985 + pub ifru_newname: [c_char; ::IFNAMSIZ],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:986:31
|
986 | pub ifru_data: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
986 | pub ifru_data: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
986 - pub ifru_data: *mut ::c_char,
986 + pub ifru_data: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:991:26
|
991 | pub ifr_name: [::c_char; ::IFNAMSIZ],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
991 | pub ifr_name: [::c_schar; ::IFNAMSIZ],
| ~~~~~~~
help: consider importing this type alias
|
5966+ use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
991 - pub ifr_name: [::c_char; ::IFNAMSIZ],
991 + pub ifr_name: [c_char; ::IFNAMSIZ],
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1000:30
|
1000 | pub ifcu_buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1000 | pub ifcu_buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1000 - pub ifcu_buf: *mut ::c_char,
1000 + pub ifcu_buf: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1026:24
|
1026 | pub d_name: [::c_char; 256],
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
1026 | pub d_name: [::c_schar; 256],
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
1026 - pub d_name: [::c_char; 256],
1026 + pub d_name: [c_char; 256],
|
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1032:28
|
1032 | pub sched_flags: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1035:30
|
1035 | pub sched_runtime: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1036:31
|
1036 | pub sched_deadline: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1037:29
|
1037 | pub sched_period: ::__u64,
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1671:24
|
1671 | pub const MS_NOUSER: ::c_ulong = 0xffffffff80000000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1671 - pub const MS_NOUSER: ::c_ulong = 0xffffffff80000000;
1671 + pub const MS_NOUSER: c_ulong = 0xffffffff80000000;
|
error[E0412]: cannot find type `rlim_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1815:29
|
1815 | pub const RLIM_SAVED_MAX: ::rlim_t = RLIM_INFINITY;
| ^^^^^^ help: a struct with a similar name exists: `rlimit`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `rlimit` defined here
error[E0412]: cannot find type `rlim_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1816:29
|
1816 | pub const RLIM_SAVED_CUR: ::rlim_t = RLIM_INFINITY;
| ^^^^^^ help: a struct with a similar name exists: `rlimit`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `rlimit` defined here
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1993:22
|
1993 | pub const AT_NULL: ::c_ulong = 0;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1993 - pub const AT_NULL: ::c_ulong = 0;
1993 + pub const AT_NULL: c_ulong = 0;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1994:24
|
1994 | pub const AT_IGNORE: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1994 - pub const AT_IGNORE: ::c_ulong = 1;
1994 + pub const AT_IGNORE: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1995:24
|
1995 | pub const AT_EXECFD: ::c_ulong = 2;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1995 - pub const AT_EXECFD: ::c_ulong = 2;
1995 + pub const AT_EXECFD: c_ulong = 2;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1996:22
|
1996 | pub const AT_PHDR: ::c_ulong = 3;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1996 - pub const AT_PHDR: ::c_ulong = 3;
1996 + pub const AT_PHDR: c_ulong = 3;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1997:23
|
1997 | pub const AT_PHENT: ::c_ulong = 4;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1997 - pub const AT_PHENT: ::c_ulong = 4;
1997 + pub const AT_PHENT: c_ulong = 4;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1998:23
|
1998 | pub const AT_PHNUM: ::c_ulong = 5;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1998 - pub const AT_PHNUM: ::c_ulong = 5;
1998 + pub const AT_PHNUM: c_ulong = 5;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:1999:24
|
1999 | pub const AT_PAGESZ: ::c_ulong = 6;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
1999 - pub const AT_PAGESZ: ::c_ulong = 6;
1999 + pub const AT_PAGESZ: c_ulong = 6;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2000:22
|
2000 | pub const AT_BASE: ::c_ulong = 7;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2000 - pub const AT_BASE: ::c_ulong = 7;
2000 + pub const AT_BASE: c_ulong = 7;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2001:23
|
2001 | pub const AT_FLAGS: ::c_ulong = 8;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2001 - pub const AT_FLAGS: ::c_ulong = 8;
2001 + pub const AT_FLAGS: c_ulong = 8;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2002:23
|
2002 | pub const AT_ENTRY: ::c_ulong = 9;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2002 - pub const AT_ENTRY: ::c_ulong = 9;
2002 + pub const AT_ENTRY: c_ulong = 9;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2003:24
|
2003 | pub const AT_NOTELF: ::c_ulong = 10;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2003 - pub const AT_NOTELF: ::c_ulong = 10;
2003 + pub const AT_NOTELF: c_ulong = 10;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2004:21
|
2004 | pub const AT_UID: ::c_ulong = 11;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2004 - pub const AT_UID: ::c_ulong = 11;
2004 + pub const AT_UID: c_ulong = 11;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2005:22
|
2005 | pub const AT_EUID: ::c_ulong = 12;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2005 - pub const AT_EUID: ::c_ulong = 12;
2005 + pub const AT_EUID: c_ulong = 12;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2006:21
|
2006 | pub const AT_GID: ::c_ulong = 13;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2006 - pub const AT_GID: ::c_ulong = 13;
2006 + pub const AT_GID: c_ulong = 13;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2007:22
|
2007 | pub const AT_EGID: ::c_ulong = 14;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2007 - pub const AT_EGID: ::c_ulong = 14;
2007 + pub const AT_EGID: c_ulong = 14;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2008:26
|
2008 | pub const AT_PLATFORM: ::c_ulong = 15;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2008 - pub const AT_PLATFORM: ::c_ulong = 15;
2008 + pub const AT_PLATFORM: c_ulong = 15;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2009:23
|
2009 | pub const AT_HWCAP: ::c_ulong = 16;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2009 - pub const AT_HWCAP: ::c_ulong = 16;
2009 + pub const AT_HWCAP: c_ulong = 16;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2010:24
|
2010 | pub const AT_CLKTCK: ::c_ulong = 17;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2010 - pub const AT_CLKTCK: ::c_ulong = 17;
2010 + pub const AT_CLKTCK: c_ulong = 17;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2012:24
|
2012 | pub const AT_SECURE: ::c_ulong = 23;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2012 - pub const AT_SECURE: ::c_ulong = 23;
2012 + pub const AT_SECURE: c_ulong = 23;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2013:31
|
2013 | pub const AT_BASE_PLATFORM: ::c_ulong = 24;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2013 - pub const AT_BASE_PLATFORM: ::c_ulong = 24;
2013 + pub const AT_BASE_PLATFORM: c_ulong = 24;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2014:24
|
2014 | pub const AT_RANDOM: ::c_ulong = 25;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2014 - pub const AT_RANDOM: ::c_ulong = 25;
2014 + pub const AT_RANDOM: c_ulong = 25;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2015:24
|
2015 | pub const AT_HWCAP2: ::c_ulong = 26;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2015 - pub const AT_HWCAP2: ::c_ulong = 26;
2015 + pub const AT_HWCAP2: c_ulong = 26;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2017:24
|
2017 | pub const AT_EXECFN: ::c_ulong = 31;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2017 - pub const AT_EXECFN: ::c_ulong = 31;
2017 + pub const AT_EXECFN: c_ulong = 31;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2021:30
|
2021 | pub const AT_SYSINFO_EHDR: ::c_ulong = 33;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2021 - pub const AT_SYSINFO_EHDR: ::c_ulong = 33;
2021 + pub const AT_SYSINFO_EHDR: c_ulong = 33;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2022:29
|
2022 | pub const AT_MINSIGSTKSZ: ::c_ulong = 51;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2022 - pub const AT_MINSIGSTKSZ: ::c_ulong = 51;
2022 + pub const AT_MINSIGSTKSZ: c_ulong = 51;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2194:24
|
2194 | pub const ST_RDONLY: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2194 - pub const ST_RDONLY: ::c_ulong = 1;
2194 + pub const ST_RDONLY: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2195:24
|
2195 | pub const ST_NOSUID: ::c_ulong = 2;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2195 - pub const ST_NOSUID: ::c_ulong = 2;
2195 + pub const ST_NOSUID: c_ulong = 2;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2196:23
|
2196 | pub const ST_NODEV: ::c_ulong = 4;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2196 - pub const ST_NODEV: ::c_ulong = 4;
2196 + pub const ST_NODEV: c_ulong = 4;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2197:24
|
2197 | pub const ST_NOEXEC: ::c_ulong = 8;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2197 - pub const ST_NOEXEC: ::c_ulong = 8;
2197 + pub const ST_NOEXEC: c_ulong = 8;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2198:29
|
2198 | pub const ST_SYNCHRONOUS: ::c_ulong = 16;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2198 - pub const ST_SYNCHRONOUS: ::c_ulong = 16;
2198 + pub const ST_SYNCHRONOUS: c_ulong = 16;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2199:26
|
2199 | pub const ST_MANDLOCK: ::c_ulong = 64;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2199 - pub const ST_MANDLOCK: ::c_ulong = 64;
2199 + pub const ST_MANDLOCK: c_ulong = 64;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2200:23
|
2200 | pub const ST_WRITE: ::c_ulong = 128;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2200 - pub const ST_WRITE: ::c_ulong = 128;
2200 + pub const ST_WRITE: c_ulong = 128;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2201:24
|
2201 | pub const ST_APPEND: ::c_ulong = 256;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2201 - pub const ST_APPEND: ::c_ulong = 256;
2201 + pub const ST_APPEND: c_ulong = 256;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2202:27
|
2202 | pub const ST_IMMUTABLE: ::c_ulong = 512;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2202 - pub const ST_IMMUTABLE: ::c_ulong = 512;
2202 + pub const ST_IMMUTABLE: c_ulong = 512;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2203:25
|
2203 | pub const ST_NOATIME: ::c_ulong = 1024;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2203 - pub const ST_NOATIME: ::c_ulong = 1024;
2203 + pub const ST_NOATIME: c_ulong = 1024;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2204:28
|
2204 | pub const ST_NODIRATIME: ::c_ulong = 2048;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2204 - pub const ST_NODIRATIME: ::c_ulong = 2048;
2204 + pub const ST_NODIRATIME: c_ulong = 2048;
|
error[E0425]: cannot find value `__SIZEOF_PTHREAD_MUTEX_T` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2237:19
|
2237 | size: [0; __SIZEOF_PTHREAD_MUTEX_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
...
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
error[E0425]: cannot find value `__SIZEOF_PTHREAD_RWLOCK_T` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2243:19
|
2243 | size: [0; __SIZEOF_PTHREAD_RWLOCK_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
...
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
error[E0412]: cannot find type `sem_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2319:30
|
2319 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2319:48
|
2319 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2481:33
|
2481 | pub const PR_SET_PTRACER_ANY: ::c_ulong = 0xffffffffffffffff;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2481 - pub const PR_SET_PTRACER_ANY: ::c_ulong = 0xffffffffffffffff;
2481 + pub const PR_SET_PTRACER_ANY: c_ulong = 0xffffffffffffffff;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2535:40
|
2535 | pub const SECCOMP_FILTER_FLAG_TSYNC: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2535 - pub const SECCOMP_FILTER_FLAG_TSYNC: ::c_ulong = 1;
2535 + pub const SECCOMP_FILTER_FLAG_TSYNC: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2536:38
|
2536 | pub const SECCOMP_FILTER_FLAG_LOG: ::c_ulong = 2;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2536 - pub const SECCOMP_FILTER_FLAG_LOG: ::c_ulong = 2;
2536 + pub const SECCOMP_FILTER_FLAG_LOG: c_ulong = 2;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2537:45
|
2537 | pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: ::c_ulong = 4;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2537 - pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: ::c_ulong = 4;
2537 + pub const SECCOMP_FILTER_FLAG_SPEC_ALLOW: c_ulong = 4;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2538:47
|
2538 | pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: ::c_ulong = 8;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2538 - pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: ::c_ulong = 8;
2538 + pub const SECCOMP_FILTER_FLAG_NEW_LISTENER: c_ulong = 8;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2539:46
|
2539 | pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: ::c_ulong = 16;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2539 - pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: ::c_ulong = 16;
2539 + pub const SECCOMP_FILTER_FLAG_TSYNC_ESRCH: c_ulong = 16;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2540:53
|
2540 | pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: ::c_ulong = 32;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2540 - pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: ::c_ulong = 32;
2540 + pub const SECCOMP_FILTER_FLAG_WAIT_KILLABLE_RECV: c_ulong = 32;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2555:47
|
2555 | pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2555 - pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: ::c_ulong = 1;
2555 + pub const SECCOMP_USER_NOTIF_FLAG_CONTINUE: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2557:39
|
2557 | pub const SECCOMP_ADDFD_FLAG_SETFD: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2557 - pub const SECCOMP_ADDFD_FLAG_SETFD: ::c_ulong = 1;
2557 + pub const SECCOMP_ADDFD_FLAG_SETFD: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2558:38
|
2558 | pub const SECCOMP_ADDFD_FLAG_SEND: ::c_ulong = 2;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
2558 - pub const SECCOMP_ADDFD_FLAG_SEND: ::c_ulong = 2;
2558 + pub const SECCOMP_ADDFD_FLAG_SEND: c_ulong = 2;
|
error[E0425]: cannot find value `O_CLOEXEC` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2564:34
|
2564 | pub const TFD_CLOEXEC: ::c_int = O_CLOEXEC;
| ^^^^^^^^^ help: a constant with a similar name exists: `IN_CLOEXEC`
...
4070 | pub const IN_CLOEXEC: ::c_int = O_CLOEXEC;
| ------------------------------------------ similarly named constant `IN_CLOEXEC` defined here
error[E0425]: cannot find value `O_NONBLOCK` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2565:35
|
2565 | pub const TFD_NONBLOCK: ::c_int = O_NONBLOCK;
| ^^^^^^^^^^ help: a constant with a similar name exists: `IN_NONBLOCK`
...
4071 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK;
| -------------------------------------------- similarly named constant `IN_NONBLOCK` defined here
error[E0425]: cannot find value `ENODATA` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2582:32
|
1837 | pub const EI_DATA: usize = 5;
| ----------------------------- similarly named constant `EI_DATA` defined here
...
2582 | pub const ENOATTR: ::c_int = ::ENODATA;
| ^^^^^^^ help: a constant with a similar name exists: `EI_DATA`
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2702:30
|
2702 | pub const RESOLVE_NO_XDEV: ::__u64 = 0x01;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2703:36
|
2703 | pub const RESOLVE_NO_MAGICLINKS: ::__u64 = 0x02;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2704:34
|
2704 | pub const RESOLVE_NO_SYMLINKS: ::__u64 = 0x04;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2705:30
|
2705 | pub const RESOLVE_BENEATH: ::__u64 = 0x08;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2706:30
|
2706 | pub const RESOLVE_IN_ROOT: ::__u64 = 0x10;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `__u64` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2707:29
|
2707 | pub const RESOLVE_CACHED: ::__u64 = 0x20;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3170:24
|
3170 | pub const SIOCADDRT: ::c_ulong = 0x0000890B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3170 - pub const SIOCADDRT: ::c_ulong = 0x0000890B;
3170 + pub const SIOCADDRT: c_ulong = 0x0000890B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3171:24
|
3171 | pub const SIOCDELRT: ::c_ulong = 0x0000890C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3171 - pub const SIOCDELRT: ::c_ulong = 0x0000890C;
3171 + pub const SIOCDELRT: c_ulong = 0x0000890C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3172:26
|
3172 | pub const SIOCGIFNAME: ::c_ulong = 0x00008910;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3172 - pub const SIOCGIFNAME: ::c_ulong = 0x00008910;
3172 + pub const SIOCGIFNAME: c_ulong = 0x00008910;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3173:26
|
3173 | pub const SIOCSIFLINK: ::c_ulong = 0x00008911;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3173 - pub const SIOCSIFLINK: ::c_ulong = 0x00008911;
3173 + pub const SIOCSIFLINK: c_ulong = 0x00008911;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3174:26
|
3174 | pub const SIOCGIFCONF: ::c_ulong = 0x00008912;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3174 - pub const SIOCGIFCONF: ::c_ulong = 0x00008912;
3174 + pub const SIOCGIFCONF: c_ulong = 0x00008912;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3175:27
|
3175 | pub const SIOCGIFFLAGS: ::c_ulong = 0x00008913;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3175 - pub const SIOCGIFFLAGS: ::c_ulong = 0x00008913;
3175 + pub const SIOCGIFFLAGS: c_ulong = 0x00008913;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3176:27
|
3176 | pub const SIOCSIFFLAGS: ::c_ulong = 0x00008914;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3176 - pub const SIOCSIFFLAGS: ::c_ulong = 0x00008914;
3176 + pub const SIOCSIFFLAGS: c_ulong = 0x00008914;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3177:26
|
3177 | pub const SIOCGIFADDR: ::c_ulong = 0x00008915;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3177 - pub const SIOCGIFADDR: ::c_ulong = 0x00008915;
3177 + pub const SIOCGIFADDR: c_ulong = 0x00008915;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3178:26
|
3178 | pub const SIOCSIFADDR: ::c_ulong = 0x00008916;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3178 - pub const SIOCSIFADDR: ::c_ulong = 0x00008916;
3178 + pub const SIOCSIFADDR: c_ulong = 0x00008916;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3179:29
|
3179 | pub const SIOCGIFDSTADDR: ::c_ulong = 0x00008917;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3179 - pub const SIOCGIFDSTADDR: ::c_ulong = 0x00008917;
3179 + pub const SIOCGIFDSTADDR: c_ulong = 0x00008917;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3180:29
|
3180 | pub const SIOCSIFDSTADDR: ::c_ulong = 0x00008918;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3180 - pub const SIOCSIFDSTADDR: ::c_ulong = 0x00008918;
3180 + pub const SIOCSIFDSTADDR: c_ulong = 0x00008918;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3181:29
|
3181 | pub const SIOCGIFBRDADDR: ::c_ulong = 0x00008919;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3181 - pub const SIOCGIFBRDADDR: ::c_ulong = 0x00008919;
3181 + pub const SIOCGIFBRDADDR: c_ulong = 0x00008919;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3182:29
|
3182 | pub const SIOCSIFBRDADDR: ::c_ulong = 0x0000891A;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3182 - pub const SIOCSIFBRDADDR: ::c_ulong = 0x0000891A;
3182 + pub const SIOCSIFBRDADDR: c_ulong = 0x0000891A;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3183:29
|
3183 | pub const SIOCGIFNETMASK: ::c_ulong = 0x0000891B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3183 - pub const SIOCGIFNETMASK: ::c_ulong = 0x0000891B;
3183 + pub const SIOCGIFNETMASK: c_ulong = 0x0000891B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3184:29
|
3184 | pub const SIOCSIFNETMASK: ::c_ulong = 0x0000891C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3184 - pub const SIOCSIFNETMASK: ::c_ulong = 0x0000891C;
3184 + pub const SIOCSIFNETMASK: c_ulong = 0x0000891C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3185:28
|
3185 | pub const SIOCGIFMETRIC: ::c_ulong = 0x0000891D;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3185 - pub const SIOCGIFMETRIC: ::c_ulong = 0x0000891D;
3185 + pub const SIOCGIFMETRIC: c_ulong = 0x0000891D;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3186:28
|
3186 | pub const SIOCSIFMETRIC: ::c_ulong = 0x0000891E;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3186 - pub const SIOCSIFMETRIC: ::c_ulong = 0x0000891E;
3186 + pub const SIOCSIFMETRIC: c_ulong = 0x0000891E;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3187:25
|
3187 | pub const SIOCGIFMEM: ::c_ulong = 0x0000891F;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3187 - pub const SIOCGIFMEM: ::c_ulong = 0x0000891F;
3187 + pub const SIOCGIFMEM: c_ulong = 0x0000891F;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3188:25
|
3188 | pub const SIOCSIFMEM: ::c_ulong = 0x00008920;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3188 - pub const SIOCSIFMEM: ::c_ulong = 0x00008920;
3188 + pub const SIOCSIFMEM: c_ulong = 0x00008920;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3189:25
|
3189 | pub const SIOCGIFMTU: ::c_ulong = 0x00008921;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3189 - pub const SIOCGIFMTU: ::c_ulong = 0x00008921;
3189 + pub const SIOCGIFMTU: c_ulong = 0x00008921;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3190:25
|
3190 | pub const SIOCSIFMTU: ::c_ulong = 0x00008922;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3190 - pub const SIOCSIFMTU: ::c_ulong = 0x00008922;
3190 + pub const SIOCSIFMTU: c_ulong = 0x00008922;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3191:26
|
3191 | pub const SIOCSIFNAME: ::c_ulong = 0x00008923;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3191 - pub const SIOCSIFNAME: ::c_ulong = 0x00008923;
3191 + pub const SIOCSIFNAME: c_ulong = 0x00008923;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3192:28
|
3192 | pub const SIOCSIFHWADDR: ::c_ulong = 0x00008924;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3192 - pub const SIOCSIFHWADDR: ::c_ulong = 0x00008924;
3192 + pub const SIOCSIFHWADDR: c_ulong = 0x00008924;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3193:27
|
3193 | pub const SIOCGIFENCAP: ::c_ulong = 0x00008925;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3193 - pub const SIOCGIFENCAP: ::c_ulong = 0x00008925;
3193 + pub const SIOCGIFENCAP: c_ulong = 0x00008925;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3194:27
|
3194 | pub const SIOCSIFENCAP: ::c_ulong = 0x00008926;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3194 - pub const SIOCSIFENCAP: ::c_ulong = 0x00008926;
3194 + pub const SIOCSIFENCAP: c_ulong = 0x00008926;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3195:28
|
3195 | pub const SIOCGIFHWADDR: ::c_ulong = 0x00008927;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3195 - pub const SIOCGIFHWADDR: ::c_ulong = 0x00008927;
3195 + pub const SIOCGIFHWADDR: c_ulong = 0x00008927;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3196:27
|
3196 | pub const SIOCGIFSLAVE: ::c_ulong = 0x00008929;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3196 - pub const SIOCGIFSLAVE: ::c_ulong = 0x00008929;
3196 + pub const SIOCGIFSLAVE: c_ulong = 0x00008929;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3197:27
|
3197 | pub const SIOCSIFSLAVE: ::c_ulong = 0x00008930;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3197 - pub const SIOCSIFSLAVE: ::c_ulong = 0x00008930;
3197 + pub const SIOCSIFSLAVE: c_ulong = 0x00008930;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3198:27
|
3198 | pub const SIOCADDMULTI: ::c_ulong = 0x00008931;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3198 - pub const SIOCADDMULTI: ::c_ulong = 0x00008931;
3198 + pub const SIOCADDMULTI: c_ulong = 0x00008931;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3199:27
|
3199 | pub const SIOCDELMULTI: ::c_ulong = 0x00008932;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3199 - pub const SIOCDELMULTI: ::c_ulong = 0x00008932;
3199 + pub const SIOCDELMULTI: c_ulong = 0x00008932;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3200:27
|
3200 | pub const SIOCGIFINDEX: ::c_ulong = 0x00008933;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3200 - pub const SIOCGIFINDEX: ::c_ulong = 0x00008933;
3200 + pub const SIOCGIFINDEX: c_ulong = 0x00008933;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3201:26
|
3201 | pub const SIOGIFINDEX: ::c_ulong = SIOCGIFINDEX;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3201 - pub const SIOGIFINDEX: ::c_ulong = SIOCGIFINDEX;
3201 + pub const SIOGIFINDEX: c_ulong = SIOCGIFINDEX;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3202:28
|
3202 | pub const SIOCSIFPFLAGS: ::c_ulong = 0x00008934;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3202 - pub const SIOCSIFPFLAGS: ::c_ulong = 0x00008934;
3202 + pub const SIOCSIFPFLAGS: c_ulong = 0x00008934;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3203:28
|
3203 | pub const SIOCGIFPFLAGS: ::c_ulong = 0x00008935;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3203 - pub const SIOCGIFPFLAGS: ::c_ulong = 0x00008935;
3203 + pub const SIOCGIFPFLAGS: c_ulong = 0x00008935;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3204:26
|
3204 | pub const SIOCDIFADDR: ::c_ulong = 0x00008936;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3204 - pub const SIOCDIFADDR: ::c_ulong = 0x00008936;
3204 + pub const SIOCDIFADDR: c_ulong = 0x00008936;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3205:33
|
3205 | pub const SIOCSIFHWBROADCAST: ::c_ulong = 0x00008937;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3205 - pub const SIOCSIFHWBROADCAST: ::c_ulong = 0x00008937;
3205 + pub const SIOCSIFHWBROADCAST: c_ulong = 0x00008937;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3206:27
|
3206 | pub const SIOCGIFCOUNT: ::c_ulong = 0x00008938;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3206 - pub const SIOCGIFCOUNT: ::c_ulong = 0x00008938;
3206 + pub const SIOCGIFCOUNT: c_ulong = 0x00008938;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3207:24
|
3207 | pub const SIOCGIFBR: ::c_ulong = 0x00008940;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3207 - pub const SIOCGIFBR: ::c_ulong = 0x00008940;
3207 + pub const SIOCGIFBR: c_ulong = 0x00008940;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3208:24
|
3208 | pub const SIOCSIFBR: ::c_ulong = 0x00008941;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3208 - pub const SIOCSIFBR: ::c_ulong = 0x00008941;
3208 + pub const SIOCSIFBR: c_ulong = 0x00008941;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3209:28
|
3209 | pub const SIOCGIFTXQLEN: ::c_ulong = 0x00008942;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3209 - pub const SIOCGIFTXQLEN: ::c_ulong = 0x00008942;
3209 + pub const SIOCGIFTXQLEN: c_ulong = 0x00008942;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3210:28
|
3210 | pub const SIOCSIFTXQLEN: ::c_ulong = 0x00008943;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3210 - pub const SIOCSIFTXQLEN: ::c_ulong = 0x00008943;
3210 + pub const SIOCSIFTXQLEN: c_ulong = 0x00008943;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3211:26
|
3211 | pub const SIOCETHTOOL: ::c_ulong = 0x00008946;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3211 - pub const SIOCETHTOOL: ::c_ulong = 0x00008946;
3211 + pub const SIOCETHTOOL: c_ulong = 0x00008946;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3212:26
|
3212 | pub const SIOCGMIIPHY: ::c_ulong = 0x00008947;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3212 - pub const SIOCGMIIPHY: ::c_ulong = 0x00008947;
3212 + pub const SIOCGMIIPHY: c_ulong = 0x00008947;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3213:26
|
3213 | pub const SIOCGMIIREG: ::c_ulong = 0x00008948;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3213 - pub const SIOCGMIIREG: ::c_ulong = 0x00008948;
3213 + pub const SIOCGMIIREG: c_ulong = 0x00008948;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3214:26
|
3214 | pub const SIOCSMIIREG: ::c_ulong = 0x00008949;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3214 - pub const SIOCSMIIREG: ::c_ulong = 0x00008949;
3214 + pub const SIOCSMIIREG: c_ulong = 0x00008949;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3215:25
|
3215 | pub const SIOCWANDEV: ::c_ulong = 0x0000894A;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3215 - pub const SIOCWANDEV: ::c_ulong = 0x0000894A;
3215 + pub const SIOCWANDEV: c_ulong = 0x0000894A;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3216:26
|
3216 | pub const SIOCOUTQNSD: ::c_ulong = 0x0000894B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3216 - pub const SIOCOUTQNSD: ::c_ulong = 0x0000894B;
3216 + pub const SIOCOUTQNSD: c_ulong = 0x0000894B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3217:24
|
3217 | pub const SIOCGSKNS: ::c_ulong = 0x0000894C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3217 - pub const SIOCGSKNS: ::c_ulong = 0x0000894C;
3217 + pub const SIOCGSKNS: c_ulong = 0x0000894C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3218:23
|
3218 | pub const SIOCDARP: ::c_ulong = 0x00008953;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3218 - pub const SIOCDARP: ::c_ulong = 0x00008953;
3218 + pub const SIOCDARP: c_ulong = 0x00008953;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3219:23
|
3219 | pub const SIOCGARP: ::c_ulong = 0x00008954;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3219 - pub const SIOCGARP: ::c_ulong = 0x00008954;
3219 + pub const SIOCGARP: c_ulong = 0x00008954;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3220:23
|
3220 | pub const SIOCSARP: ::c_ulong = 0x00008955;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3220 - pub const SIOCSARP: ::c_ulong = 0x00008955;
3220 + pub const SIOCSARP: c_ulong = 0x00008955;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3221:24
|
3221 | pub const SIOCDRARP: ::c_ulong = 0x00008960;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3221 - pub const SIOCDRARP: ::c_ulong = 0x00008960;
3221 + pub const SIOCDRARP: c_ulong = 0x00008960;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3222:24
|
3222 | pub const SIOCGRARP: ::c_ulong = 0x00008961;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3222 - pub const SIOCGRARP: ::c_ulong = 0x00008961;
3222 + pub const SIOCGRARP: c_ulong = 0x00008961;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3223:24
|
3223 | pub const SIOCSRARP: ::c_ulong = 0x00008962;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3223 - pub const SIOCSRARP: ::c_ulong = 0x00008962;
3223 + pub const SIOCSRARP: c_ulong = 0x00008962;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3224:25
|
3224 | pub const SIOCGIFMAP: ::c_ulong = 0x00008970;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3224 - pub const SIOCGIFMAP: ::c_ulong = 0x00008970;
3224 + pub const SIOCGIFMAP: c_ulong = 0x00008970;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3225:25
|
3225 | pub const SIOCSIFMAP: ::c_ulong = 0x00008971;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3225 - pub const SIOCSIFMAP: ::c_ulong = 0x00008971;
3225 + pub const SIOCSIFMAP: c_ulong = 0x00008971;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3226:28
|
3226 | pub const SIOCSHWTSTAMP: ::c_ulong = 0x000089b0;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3226 - pub const SIOCSHWTSTAMP: ::c_ulong = 0x000089b0;
3226 + pub const SIOCSHWTSTAMP: c_ulong = 0x000089b0;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3227:28
|
3227 | pub const SIOCGHWTSTAMP: ::c_ulong = 0x000089b1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3227 - pub const SIOCGHWTSTAMP: ::c_ulong = 0x000089b1;
3227 + pub const SIOCGHWTSTAMP: c_ulong = 0x000089b1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3230:27
|
3230 | pub const WIRELESS_EXT: ::c_ulong = 0x16;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3230 - pub const WIRELESS_EXT: ::c_ulong = 0x16;
3230 + pub const WIRELESS_EXT: c_ulong = 0x16;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3232:28
|
3232 | pub const SIOCSIWCOMMIT: ::c_ulong = 0x8B00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3232 - pub const SIOCSIWCOMMIT: ::c_ulong = 0x8B00;
3232 + pub const SIOCSIWCOMMIT: c_ulong = 0x8B00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3233:26
|
3233 | pub const SIOCGIWNAME: ::c_ulong = 0x8B01;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3233 - pub const SIOCGIWNAME: ::c_ulong = 0x8B01;
3233 + pub const SIOCGIWNAME: c_ulong = 0x8B01;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3235:26
|
3235 | pub const SIOCSIWNWID: ::c_ulong = 0x8B02;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3235 - pub const SIOCSIWNWID: ::c_ulong = 0x8B02;
3235 + pub const SIOCSIWNWID: c_ulong = 0x8B02;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3236:26
|
3236 | pub const SIOCGIWNWID: ::c_ulong = 0x8B03;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3236 - pub const SIOCGIWNWID: ::c_ulong = 0x8B03;
3236 + pub const SIOCGIWNWID: c_ulong = 0x8B03;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3237:26
|
3237 | pub const SIOCSIWFREQ: ::c_ulong = 0x8B04;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3237 - pub const SIOCSIWFREQ: ::c_ulong = 0x8B04;
3237 + pub const SIOCSIWFREQ: c_ulong = 0x8B04;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3238:26
|
3238 | pub const SIOCGIWFREQ: ::c_ulong = 0x8B05;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3238 - pub const SIOCGIWFREQ: ::c_ulong = 0x8B05;
3238 + pub const SIOCGIWFREQ: c_ulong = 0x8B05;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3239:26
|
3239 | pub const SIOCSIWMODE: ::c_ulong = 0x8B06;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3239 - pub const SIOCSIWMODE: ::c_ulong = 0x8B06;
3239 + pub const SIOCSIWMODE: c_ulong = 0x8B06;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3240:26
|
3240 | pub const SIOCGIWMODE: ::c_ulong = 0x8B07;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3240 - pub const SIOCGIWMODE: ::c_ulong = 0x8B07;
3240 + pub const SIOCGIWMODE: c_ulong = 0x8B07;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3241:26
|
3241 | pub const SIOCSIWSENS: ::c_ulong = 0x8B08;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3241 - pub const SIOCSIWSENS: ::c_ulong = 0x8B08;
3241 + pub const SIOCSIWSENS: c_ulong = 0x8B08;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3242:26
|
3242 | pub const SIOCGIWSENS: ::c_ulong = 0x8B09;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3242 - pub const SIOCGIWSENS: ::c_ulong = 0x8B09;
3242 + pub const SIOCGIWSENS: c_ulong = 0x8B09;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3244:27
|
3244 | pub const SIOCSIWRANGE: ::c_ulong = 0x8B0A;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3244 - pub const SIOCSIWRANGE: ::c_ulong = 0x8B0A;
3244 + pub const SIOCSIWRANGE: c_ulong = 0x8B0A;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3245:27
|
3245 | pub const SIOCGIWRANGE: ::c_ulong = 0x8B0B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3245 - pub const SIOCGIWRANGE: ::c_ulong = 0x8B0B;
3245 + pub const SIOCGIWRANGE: c_ulong = 0x8B0B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3246:26
|
3246 | pub const SIOCSIWPRIV: ::c_ulong = 0x8B0C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3246 - pub const SIOCSIWPRIV: ::c_ulong = 0x8B0C;
3246 + pub const SIOCSIWPRIV: c_ulong = 0x8B0C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3247:26
|
3247 | pub const SIOCGIWPRIV: ::c_ulong = 0x8B0D;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3247 - pub const SIOCGIWPRIV: ::c_ulong = 0x8B0D;
3247 + pub const SIOCGIWPRIV: c_ulong = 0x8B0D;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3248:27
|
3248 | pub const SIOCSIWSTATS: ::c_ulong = 0x8B0E;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3248 - pub const SIOCSIWSTATS: ::c_ulong = 0x8B0E;
3248 + pub const SIOCSIWSTATS: c_ulong = 0x8B0E;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3249:27
|
3249 | pub const SIOCGIWSTATS: ::c_ulong = 0x8B0F;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3249 - pub const SIOCGIWSTATS: ::c_ulong = 0x8B0F;
3249 + pub const SIOCGIWSTATS: c_ulong = 0x8B0F;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3251:25
|
3251 | pub const SIOCSIWSPY: ::c_ulong = 0x8B10;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3251 - pub const SIOCSIWSPY: ::c_ulong = 0x8B10;
3251 + pub const SIOCSIWSPY: c_ulong = 0x8B10;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3252:25
|
3252 | pub const SIOCGIWSPY: ::c_ulong = 0x8B11;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3252 - pub const SIOCGIWSPY: ::c_ulong = 0x8B11;
3252 + pub const SIOCGIWSPY: c_ulong = 0x8B11;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3253:28
|
3253 | pub const SIOCSIWTHRSPY: ::c_ulong = 0x8B12;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3253 - pub const SIOCSIWTHRSPY: ::c_ulong = 0x8B12;
3253 + pub const SIOCSIWTHRSPY: c_ulong = 0x8B12;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3254:28
|
3254 | pub const SIOCGIWTHRSPY: ::c_ulong = 0x8B13;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3254 - pub const SIOCGIWTHRSPY: ::c_ulong = 0x8B13;
3254 + pub const SIOCGIWTHRSPY: c_ulong = 0x8B13;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3256:24
|
3256 | pub const SIOCSIWAP: ::c_ulong = 0x8B14;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3256 - pub const SIOCSIWAP: ::c_ulong = 0x8B14;
3256 + pub const SIOCSIWAP: c_ulong = 0x8B14;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3257:24
|
3257 | pub const SIOCGIWAP: ::c_ulong = 0x8B15;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3257 - pub const SIOCGIWAP: ::c_ulong = 0x8B15;
3257 + pub const SIOCGIWAP: c_ulong = 0x8B15;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3258:28
|
3258 | pub const SIOCGIWAPLIST: ::c_ulong = 0x8B17;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3258 - pub const SIOCGIWAPLIST: ::c_ulong = 0x8B17;
3258 + pub const SIOCGIWAPLIST: c_ulong = 0x8B17;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3259:26
|
3259 | pub const SIOCSIWSCAN: ::c_ulong = 0x8B18;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3259 - pub const SIOCSIWSCAN: ::c_ulong = 0x8B18;
3259 + pub const SIOCSIWSCAN: c_ulong = 0x8B18;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3260:26
|
3260 | pub const SIOCGIWSCAN: ::c_ulong = 0x8B19;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3260 - pub const SIOCGIWSCAN: ::c_ulong = 0x8B19;
3260 + pub const SIOCGIWSCAN: c_ulong = 0x8B19;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3262:27
|
3262 | pub const SIOCSIWESSID: ::c_ulong = 0x8B1A;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3262 - pub const SIOCSIWESSID: ::c_ulong = 0x8B1A;
3262 + pub const SIOCSIWESSID: c_ulong = 0x8B1A;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3263:27
|
3263 | pub const SIOCGIWESSID: ::c_ulong = 0x8B1B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3263 - pub const SIOCGIWESSID: ::c_ulong = 0x8B1B;
3263 + pub const SIOCGIWESSID: c_ulong = 0x8B1B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3264:27
|
3264 | pub const SIOCSIWNICKN: ::c_ulong = 0x8B1C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3264 - pub const SIOCSIWNICKN: ::c_ulong = 0x8B1C;
3264 + pub const SIOCSIWNICKN: c_ulong = 0x8B1C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3265:27
|
3265 | pub const SIOCGIWNICKN: ::c_ulong = 0x8B1D;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3265 - pub const SIOCGIWNICKN: ::c_ulong = 0x8B1D;
3265 + pub const SIOCGIWNICKN: c_ulong = 0x8B1D;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3267:26
|
3267 | pub const SIOCSIWRATE: ::c_ulong = 0x8B20;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3267 - pub const SIOCSIWRATE: ::c_ulong = 0x8B20;
3267 + pub const SIOCSIWRATE: c_ulong = 0x8B20;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3268:26
|
3268 | pub const SIOCGIWRATE: ::c_ulong = 0x8B21;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3268 - pub const SIOCGIWRATE: ::c_ulong = 0x8B21;
3268 + pub const SIOCGIWRATE: c_ulong = 0x8B21;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3269:25
|
3269 | pub const SIOCSIWRTS: ::c_ulong = 0x8B22;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3269 - pub const SIOCSIWRTS: ::c_ulong = 0x8B22;
3269 + pub const SIOCSIWRTS: c_ulong = 0x8B22;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3270:25
|
3270 | pub const SIOCGIWRTS: ::c_ulong = 0x8B23;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3270 - pub const SIOCGIWRTS: ::c_ulong = 0x8B23;
3270 + pub const SIOCGIWRTS: c_ulong = 0x8B23;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3271:26
|
3271 | pub const SIOCSIWFRAG: ::c_ulong = 0x8B24;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3271 - pub const SIOCSIWFRAG: ::c_ulong = 0x8B24;
3271 + pub const SIOCSIWFRAG: c_ulong = 0x8B24;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3272:26
|
3272 | pub const SIOCGIWFRAG: ::c_ulong = 0x8B25;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3272 - pub const SIOCGIWFRAG: ::c_ulong = 0x8B25;
3272 + pub const SIOCGIWFRAG: c_ulong = 0x8B25;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3273:27
|
3273 | pub const SIOCSIWTXPOW: ::c_ulong = 0x8B26;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3273 - pub const SIOCSIWTXPOW: ::c_ulong = 0x8B26;
3273 + pub const SIOCSIWTXPOW: c_ulong = 0x8B26;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3274:27
|
3274 | pub const SIOCGIWTXPOW: ::c_ulong = 0x8B27;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3274 - pub const SIOCGIWTXPOW: ::c_ulong = 0x8B27;
3274 + pub const SIOCGIWTXPOW: c_ulong = 0x8B27;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3275:27
|
3275 | pub const SIOCSIWRETRY: ::c_ulong = 0x8B28;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3275 - pub const SIOCSIWRETRY: ::c_ulong = 0x8B28;
3275 + pub const SIOCSIWRETRY: c_ulong = 0x8B28;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3276:27
|
3276 | pub const SIOCGIWRETRY: ::c_ulong = 0x8B29;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3276 - pub const SIOCGIWRETRY: ::c_ulong = 0x8B29;
3276 + pub const SIOCGIWRETRY: c_ulong = 0x8B29;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3278:28
|
3278 | pub const SIOCSIWENCODE: ::c_ulong = 0x8B2A;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3278 - pub const SIOCSIWENCODE: ::c_ulong = 0x8B2A;
3278 + pub const SIOCSIWENCODE: c_ulong = 0x8B2A;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3279:28
|
3279 | pub const SIOCGIWENCODE: ::c_ulong = 0x8B2B;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3279 - pub const SIOCGIWENCODE: ::c_ulong = 0x8B2B;
3279 + pub const SIOCGIWENCODE: c_ulong = 0x8B2B;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3281:27
|
3281 | pub const SIOCSIWPOWER: ::c_ulong = 0x8B2C;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3281 - pub const SIOCSIWPOWER: ::c_ulong = 0x8B2C;
3281 + pub const SIOCSIWPOWER: c_ulong = 0x8B2C;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3282:27
|
3282 | pub const SIOCGIWPOWER: ::c_ulong = 0x8B2D;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3282 - pub const SIOCGIWPOWER: ::c_ulong = 0x8B2D;
3282 + pub const SIOCGIWPOWER: c_ulong = 0x8B2D;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3284:27
|
3284 | pub const SIOCSIWGENIE: ::c_ulong = 0x8B30;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3284 - pub const SIOCSIWGENIE: ::c_ulong = 0x8B30;
3284 + pub const SIOCSIWGENIE: c_ulong = 0x8B30;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3285:27
|
3285 | pub const SIOCGIWGENIE: ::c_ulong = 0x8B31;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3285 - pub const SIOCGIWGENIE: ::c_ulong = 0x8B31;
3285 + pub const SIOCGIWGENIE: c_ulong = 0x8B31;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3287:26
|
3287 | pub const SIOCSIWMLME: ::c_ulong = 0x8B16;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3287 - pub const SIOCSIWMLME: ::c_ulong = 0x8B16;
3287 + pub const SIOCSIWMLME: c_ulong = 0x8B16;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3289:26
|
3289 | pub const SIOCSIWAUTH: ::c_ulong = 0x8B32;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3289 - pub const SIOCSIWAUTH: ::c_ulong = 0x8B32;
3289 + pub const SIOCSIWAUTH: c_ulong = 0x8B32;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3290:26
|
3290 | pub const SIOCGIWAUTH: ::c_ulong = 0x8B33;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3290 - pub const SIOCGIWAUTH: ::c_ulong = 0x8B33;
3290 + pub const SIOCGIWAUTH: c_ulong = 0x8B33;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3292:31
|
3292 | pub const SIOCSIWENCODEEXT: ::c_ulong = 0x8B34;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3292 - pub const SIOCSIWENCODEEXT: ::c_ulong = 0x8B34;
3292 + pub const SIOCSIWENCODEEXT: c_ulong = 0x8B34;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3293:31
|
3293 | pub const SIOCGIWENCODEEXT: ::c_ulong = 0x8B35;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3293 - pub const SIOCGIWENCODEEXT: ::c_ulong = 0x8B35;
3293 + pub const SIOCGIWENCODEEXT: c_ulong = 0x8B35;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3295:27
|
3295 | pub const SIOCSIWPMKSA: ::c_ulong = 0x8B36;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3295 - pub const SIOCSIWPMKSA: ::c_ulong = 0x8B36;
3295 + pub const SIOCSIWPMKSA: c_ulong = 0x8B36;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3297:30
|
3297 | pub const SIOCIWFIRSTPRIV: ::c_ulong = 0x8BE0;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3297 - pub const SIOCIWFIRSTPRIV: ::c_ulong = 0x8BE0;
3297 + pub const SIOCIWFIRSTPRIV: c_ulong = 0x8BE0;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3298:29
|
3298 | pub const SIOCIWLASTPRIV: ::c_ulong = 0x8BFF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3298 - pub const SIOCIWLASTPRIV: ::c_ulong = 0x8BFF;
3298 + pub const SIOCIWLASTPRIV: c_ulong = 0x8BFF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3300:26
|
3300 | pub const SIOCIWFIRST: ::c_ulong = 0x8B00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3300 - pub const SIOCIWFIRST: ::c_ulong = 0x8B00;
3300 + pub const SIOCIWFIRST: c_ulong = 0x8B00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3301:25
|
3301 | pub const SIOCIWLAST: ::c_ulong = SIOCIWLASTPRIV;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3301 - pub const SIOCIWLAST: ::c_ulong = SIOCIWLASTPRIV;
3301 + pub const SIOCIWLAST: c_ulong = SIOCIWLASTPRIV;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3303:25
|
3303 | pub const IWEVTXDROP: ::c_ulong = 0x8C00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3303 - pub const IWEVTXDROP: ::c_ulong = 0x8C00;
3303 + pub const IWEVTXDROP: c_ulong = 0x8C00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3304:23
|
3304 | pub const IWEVQUAL: ::c_ulong = 0x8C01;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3304 - pub const IWEVQUAL: ::c_ulong = 0x8C01;
3304 + pub const IWEVQUAL: c_ulong = 0x8C01;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3305:25
|
3305 | pub const IWEVCUSTOM: ::c_ulong = 0x8C02;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3305 - pub const IWEVCUSTOM: ::c_ulong = 0x8C02;
3305 + pub const IWEVCUSTOM: c_ulong = 0x8C02;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3306:29
|
3306 | pub const IWEVREGISTERED: ::c_ulong = 0x8C03;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3306 - pub const IWEVREGISTERED: ::c_ulong = 0x8C03;
3306 + pub const IWEVREGISTERED: c_ulong = 0x8C03;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3307:26
|
3307 | pub const IWEVEXPIRED: ::c_ulong = 0x8C04;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3307 - pub const IWEVEXPIRED: ::c_ulong = 0x8C04;
3307 + pub const IWEVEXPIRED: c_ulong = 0x8C04;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3308:24
|
3308 | pub const IWEVGENIE: ::c_ulong = 0x8C05;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3308 - pub const IWEVGENIE: ::c_ulong = 0x8C05;
3308 + pub const IWEVGENIE: c_ulong = 0x8C05;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3309:36
|
3309 | pub const IWEVMICHAELMICFAILURE: ::c_ulong = 0x8C06;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3309 - pub const IWEVMICHAELMICFAILURE: ::c_ulong = 0x8C06;
3309 + pub const IWEVMICHAELMICFAILURE: c_ulong = 0x8C06;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3310:29
|
3310 | pub const IWEVASSOCREQIE: ::c_ulong = 0x8C07;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3310 - pub const IWEVASSOCREQIE: ::c_ulong = 0x8C07;
3310 + pub const IWEVASSOCREQIE: c_ulong = 0x8C07;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3311:30
|
3311 | pub const IWEVASSOCRESPIE: ::c_ulong = 0x8C08;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3311 - pub const IWEVASSOCRESPIE: ::c_ulong = 0x8C08;
3311 + pub const IWEVASSOCRESPIE: c_ulong = 0x8C08;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3312:28
|
3312 | pub const IWEVPMKIDCAND: ::c_ulong = 0x8C09;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3312 - pub const IWEVPMKIDCAND: ::c_ulong = 0x8C09;
3312 + pub const IWEVPMKIDCAND: c_ulong = 0x8C09;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3313:24
|
3313 | pub const IWEVFIRST: ::c_ulong = 0x8C00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3313 - pub const IWEVFIRST: ::c_ulong = 0x8C00;
3313 + pub const IWEVFIRST: c_ulong = 0x8C00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3315:32
|
3315 | pub const IW_PRIV_TYPE_MASK: ::c_ulong = 0x7000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3315 - pub const IW_PRIV_TYPE_MASK: ::c_ulong = 0x7000;
3315 + pub const IW_PRIV_TYPE_MASK: c_ulong = 0x7000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3316:32
|
3316 | pub const IW_PRIV_TYPE_NONE: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3316 - pub const IW_PRIV_TYPE_NONE: ::c_ulong = 0x0000;
3316 + pub const IW_PRIV_TYPE_NONE: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3317:32
|
3317 | pub const IW_PRIV_TYPE_BYTE: ::c_ulong = 0x1000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3317 - pub const IW_PRIV_TYPE_BYTE: ::c_ulong = 0x1000;
3317 + pub const IW_PRIV_TYPE_BYTE: c_ulong = 0x1000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3318:32
|
3318 | pub const IW_PRIV_TYPE_CHAR: ::c_ulong = 0x2000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3318 - pub const IW_PRIV_TYPE_CHAR: ::c_ulong = 0x2000;
3318 + pub const IW_PRIV_TYPE_CHAR: c_ulong = 0x2000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3319:31
|
3319 | pub const IW_PRIV_TYPE_INT: ::c_ulong = 0x4000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3319 - pub const IW_PRIV_TYPE_INT: ::c_ulong = 0x4000;
3319 + pub const IW_PRIV_TYPE_INT: c_ulong = 0x4000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3320:33
|
3320 | pub const IW_PRIV_TYPE_FLOAT: ::c_ulong = 0x5000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3320 - pub const IW_PRIV_TYPE_FLOAT: ::c_ulong = 0x5000;
3320 + pub const IW_PRIV_TYPE_FLOAT: c_ulong = 0x5000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3321:32
|
3321 | pub const IW_PRIV_TYPE_ADDR: ::c_ulong = 0x6000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3321 - pub const IW_PRIV_TYPE_ADDR: ::c_ulong = 0x6000;
3321 + pub const IW_PRIV_TYPE_ADDR: c_ulong = 0x6000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3323:33
|
3323 | pub const IW_PRIV_SIZE_FIXED: ::c_ulong = 0x0800;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3323 - pub const IW_PRIV_SIZE_FIXED: ::c_ulong = 0x0800;
3323 + pub const IW_PRIV_SIZE_FIXED: c_ulong = 0x0800;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3325:32
|
3325 | pub const IW_PRIV_SIZE_MASK: ::c_ulong = 0x07FF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3325 - pub const IW_PRIV_SIZE_MASK: ::c_ulong = 0x07FF;
3325 + pub const IW_PRIV_SIZE_MASK: c_ulong = 0x07FF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3343:35
|
3343 | pub const IW_QUAL_QUAL_UPDATED: ::c_ulong = 0x01;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3343 - pub const IW_QUAL_QUAL_UPDATED: ::c_ulong = 0x01;
3343 + pub const IW_QUAL_QUAL_UPDATED: c_ulong = 0x01;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3344:36
|
3344 | pub const IW_QUAL_LEVEL_UPDATED: ::c_ulong = 0x02;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3344 - pub const IW_QUAL_LEVEL_UPDATED: ::c_ulong = 0x02;
3344 + pub const IW_QUAL_LEVEL_UPDATED: c_ulong = 0x02;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3345:36
|
3345 | pub const IW_QUAL_NOISE_UPDATED: ::c_ulong = 0x04;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3345 - pub const IW_QUAL_NOISE_UPDATED: ::c_ulong = 0x04;
3345 + pub const IW_QUAL_NOISE_UPDATED: c_ulong = 0x04;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3346:34
|
3346 | pub const IW_QUAL_ALL_UPDATED: ::c_ulong = 0x07;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3346 - pub const IW_QUAL_ALL_UPDATED: ::c_ulong = 0x07;
3346 + pub const IW_QUAL_ALL_UPDATED: c_ulong = 0x07;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3347:26
|
3347 | pub const IW_QUAL_DBM: ::c_ulong = 0x08;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3347 - pub const IW_QUAL_DBM: ::c_ulong = 0x08;
3347 + pub const IW_QUAL_DBM: c_ulong = 0x08;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3348:35
|
3348 | pub const IW_QUAL_QUAL_INVALID: ::c_ulong = 0x10;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3348 - pub const IW_QUAL_QUAL_INVALID: ::c_ulong = 0x10;
3348 + pub const IW_QUAL_QUAL_INVALID: c_ulong = 0x10;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3349:36
|
3349 | pub const IW_QUAL_LEVEL_INVALID: ::c_ulong = 0x20;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3349 - pub const IW_QUAL_LEVEL_INVALID: ::c_ulong = 0x20;
3349 + pub const IW_QUAL_LEVEL_INVALID: c_ulong = 0x20;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3350:36
|
3350 | pub const IW_QUAL_NOISE_INVALID: ::c_ulong = 0x40;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3350 - pub const IW_QUAL_NOISE_INVALID: ::c_ulong = 0x40;
3350 + pub const IW_QUAL_NOISE_INVALID: c_ulong = 0x40;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3351:27
|
3351 | pub const IW_QUAL_RCPI: ::c_ulong = 0x80;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3351 - pub const IW_QUAL_RCPI: ::c_ulong = 0x80;
3351 + pub const IW_QUAL_RCPI: c_ulong = 0x80;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3352:34
|
3352 | pub const IW_QUAL_ALL_INVALID: ::c_ulong = 0x70;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3352 - pub const IW_QUAL_ALL_INVALID: ::c_ulong = 0x70;
3352 + pub const IW_QUAL_ALL_INVALID: c_ulong = 0x70;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3354:27
|
3354 | pub const IW_FREQ_AUTO: ::c_ulong = 0x00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3354 - pub const IW_FREQ_AUTO: ::c_ulong = 0x00;
3354 + pub const IW_FREQ_AUTO: c_ulong = 0x00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3355:28
|
3355 | pub const IW_FREQ_FIXED: ::c_ulong = 0x01;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3355 - pub const IW_FREQ_FIXED: ::c_ulong = 0x01;
3355 + pub const IW_FREQ_FIXED: c_ulong = 0x01;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3360:30
|
3360 | pub const IW_ENCODE_INDEX: ::c_ulong = 0x00FF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3360 - pub const IW_ENCODE_INDEX: ::c_ulong = 0x00FF;
3360 + pub const IW_ENCODE_INDEX: c_ulong = 0x00FF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3361:30
|
3361 | pub const IW_ENCODE_FLAGS: ::c_ulong = 0xFF00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3361 - pub const IW_ENCODE_FLAGS: ::c_ulong = 0xFF00;
3361 + pub const IW_ENCODE_FLAGS: c_ulong = 0xFF00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3362:29
|
3362 | pub const IW_ENCODE_MODE: ::c_ulong = 0xF000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3362 - pub const IW_ENCODE_MODE: ::c_ulong = 0xF000;
3362 + pub const IW_ENCODE_MODE: c_ulong = 0xF000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3363:33
|
3363 | pub const IW_ENCODE_DISABLED: ::c_ulong = 0x8000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3363 - pub const IW_ENCODE_DISABLED: ::c_ulong = 0x8000;
3363 + pub const IW_ENCODE_DISABLED: c_ulong = 0x8000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3364:32
|
3364 | pub const IW_ENCODE_ENABLED: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3364 - pub const IW_ENCODE_ENABLED: ::c_ulong = 0x0000;
3364 + pub const IW_ENCODE_ENABLED: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3365:35
|
3365 | pub const IW_ENCODE_RESTRICTED: ::c_ulong = 0x4000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3365 - pub const IW_ENCODE_RESTRICTED: ::c_ulong = 0x4000;
3365 + pub const IW_ENCODE_RESTRICTED: c_ulong = 0x4000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3366:29
|
3366 | pub const IW_ENCODE_OPEN: ::c_ulong = 0x2000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3366 - pub const IW_ENCODE_OPEN: ::c_ulong = 0x2000;
3366 + pub const IW_ENCODE_OPEN: c_ulong = 0x2000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3367:30
|
3367 | pub const IW_ENCODE_NOKEY: ::c_ulong = 0x0800;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3367 - pub const IW_ENCODE_NOKEY: ::c_ulong = 0x0800;
3367 + pub const IW_ENCODE_NOKEY: c_ulong = 0x0800;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3368:29
|
3368 | pub const IW_ENCODE_TEMP: ::c_ulong = 0x0400;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3368 - pub const IW_ENCODE_TEMP: ::c_ulong = 0x0400;
3368 + pub const IW_ENCODE_TEMP: c_ulong = 0x0400;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3370:26
|
3370 | pub const IW_POWER_ON: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3370 - pub const IW_POWER_ON: ::c_ulong = 0x0000;
3370 + pub const IW_POWER_ON: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3371:28
|
3371 | pub const IW_POWER_TYPE: ::c_ulong = 0xF000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3371 - pub const IW_POWER_TYPE: ::c_ulong = 0xF000;
3371 + pub const IW_POWER_TYPE: c_ulong = 0xF000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3372:30
|
3372 | pub const IW_POWER_PERIOD: ::c_ulong = 0x1000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3372 - pub const IW_POWER_PERIOD: ::c_ulong = 0x1000;
3372 + pub const IW_POWER_PERIOD: c_ulong = 0x1000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3373:31
|
3373 | pub const IW_POWER_TIMEOUT: ::c_ulong = 0x2000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3373 - pub const IW_POWER_TIMEOUT: ::c_ulong = 0x2000;
3373 + pub const IW_POWER_TIMEOUT: c_ulong = 0x2000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3374:28
|
3374 | pub const IW_POWER_MODE: ::c_ulong = 0x0F00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3374 - pub const IW_POWER_MODE: ::c_ulong = 0x0F00;
3374 + pub const IW_POWER_MODE: c_ulong = 0x0F00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3375:33
|
3375 | pub const IW_POWER_UNICAST_R: ::c_ulong = 0x0100;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3375 - pub const IW_POWER_UNICAST_R: ::c_ulong = 0x0100;
3375 + pub const IW_POWER_UNICAST_R: c_ulong = 0x0100;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3376:35
|
3376 | pub const IW_POWER_MULTICAST_R: ::c_ulong = 0x0200;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3376 - pub const IW_POWER_MULTICAST_R: ::c_ulong = 0x0200;
3376 + pub const IW_POWER_MULTICAST_R: c_ulong = 0x0200;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3377:29
|
3377 | pub const IW_POWER_ALL_R: ::c_ulong = 0x0300;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3377 - pub const IW_POWER_ALL_R: ::c_ulong = 0x0300;
3377 + pub const IW_POWER_ALL_R: c_ulong = 0x0300;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3378:31
|
3378 | pub const IW_POWER_FORCE_S: ::c_ulong = 0x0400;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3378 - pub const IW_POWER_FORCE_S: ::c_ulong = 0x0400;
3378 + pub const IW_POWER_FORCE_S: c_ulong = 0x0400;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3379:32
|
3379 | pub const IW_POWER_REPEATER: ::c_ulong = 0x0800;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3379 - pub const IW_POWER_REPEATER: ::c_ulong = 0x0800;
3379 + pub const IW_POWER_REPEATER: c_ulong = 0x0800;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3380:32
|
3380 | pub const IW_POWER_MODIFIER: ::c_ulong = 0x000F;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3380 - pub const IW_POWER_MODIFIER: ::c_ulong = 0x000F;
3380 + pub const IW_POWER_MODIFIER: c_ulong = 0x000F;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3381:27
|
3381 | pub const IW_POWER_MIN: ::c_ulong = 0x0001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3381 - pub const IW_POWER_MIN: ::c_ulong = 0x0001;
3381 + pub const IW_POWER_MIN: c_ulong = 0x0001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3382:27
|
3382 | pub const IW_POWER_MAX: ::c_ulong = 0x0002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3382 - pub const IW_POWER_MAX: ::c_ulong = 0x0002;
3382 + pub const IW_POWER_MAX: c_ulong = 0x0002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3383:32
|
3383 | pub const IW_POWER_RELATIVE: ::c_ulong = 0x0004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3383 - pub const IW_POWER_RELATIVE: ::c_ulong = 0x0004;
3383 + pub const IW_POWER_RELATIVE: c_ulong = 0x0004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3385:28
|
3385 | pub const IW_TXPOW_TYPE: ::c_ulong = 0x00FF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3385 - pub const IW_TXPOW_TYPE: ::c_ulong = 0x00FF;
3385 + pub const IW_TXPOW_TYPE: c_ulong = 0x00FF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3386:27
|
3386 | pub const IW_TXPOW_DBM: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3386 - pub const IW_TXPOW_DBM: ::c_ulong = 0x0000;
3386 + pub const IW_TXPOW_DBM: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3387:29
|
3387 | pub const IW_TXPOW_MWATT: ::c_ulong = 0x0001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3387 - pub const IW_TXPOW_MWATT: ::c_ulong = 0x0001;
3387 + pub const IW_TXPOW_MWATT: c_ulong = 0x0001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3388:32
|
3388 | pub const IW_TXPOW_RELATIVE: ::c_ulong = 0x0002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3388 - pub const IW_TXPOW_RELATIVE: ::c_ulong = 0x0002;
3388 + pub const IW_TXPOW_RELATIVE: c_ulong = 0x0002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3389:29
|
3389 | pub const IW_TXPOW_RANGE: ::c_ulong = 0x1000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3389 - pub const IW_TXPOW_RANGE: ::c_ulong = 0x1000;
3389 + pub const IW_TXPOW_RANGE: c_ulong = 0x1000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3391:26
|
3391 | pub const IW_RETRY_ON: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3391 - pub const IW_RETRY_ON: ::c_ulong = 0x0000;
3391 + pub const IW_RETRY_ON: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3392:28
|
3392 | pub const IW_RETRY_TYPE: ::c_ulong = 0xF000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3392 - pub const IW_RETRY_TYPE: ::c_ulong = 0xF000;
3392 + pub const IW_RETRY_TYPE: c_ulong = 0xF000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3393:29
|
3393 | pub const IW_RETRY_LIMIT: ::c_ulong = 0x1000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3393 - pub const IW_RETRY_LIMIT: ::c_ulong = 0x1000;
3393 + pub const IW_RETRY_LIMIT: c_ulong = 0x1000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3394:32
|
3394 | pub const IW_RETRY_LIFETIME: ::c_ulong = 0x2000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3394 - pub const IW_RETRY_LIFETIME: ::c_ulong = 0x2000;
3394 + pub const IW_RETRY_LIFETIME: c_ulong = 0x2000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3395:32
|
3395 | pub const IW_RETRY_MODIFIER: ::c_ulong = 0x00FF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3395 - pub const IW_RETRY_MODIFIER: ::c_ulong = 0x00FF;
3395 + pub const IW_RETRY_MODIFIER: c_ulong = 0x00FF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3396:27
|
3396 | pub const IW_RETRY_MIN: ::c_ulong = 0x0001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3396 - pub const IW_RETRY_MIN: ::c_ulong = 0x0001;
3396 + pub const IW_RETRY_MIN: c_ulong = 0x0001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3397:27
|
3397 | pub const IW_RETRY_MAX: ::c_ulong = 0x0002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3397 - pub const IW_RETRY_MAX: ::c_ulong = 0x0002;
3397 + pub const IW_RETRY_MAX: c_ulong = 0x0002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3398:32
|
3398 | pub const IW_RETRY_RELATIVE: ::c_ulong = 0x0004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3398 - pub const IW_RETRY_RELATIVE: ::c_ulong = 0x0004;
3398 + pub const IW_RETRY_RELATIVE: c_ulong = 0x0004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3399:29
|
3399 | pub const IW_RETRY_SHORT: ::c_ulong = 0x0010;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3399 - pub const IW_RETRY_SHORT: ::c_ulong = 0x0010;
3399 + pub const IW_RETRY_SHORT: c_ulong = 0x0010;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3400:28
|
3400 | pub const IW_RETRY_LONG: ::c_ulong = 0x0020;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3400 - pub const IW_RETRY_LONG: ::c_ulong = 0x0020;
3400 + pub const IW_RETRY_LONG: c_ulong = 0x0020;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3402:30
|
3402 | pub const IW_SCAN_DEFAULT: ::c_ulong = 0x0000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3402 - pub const IW_SCAN_DEFAULT: ::c_ulong = 0x0000;
3402 + pub const IW_SCAN_DEFAULT: c_ulong = 0x0000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3403:32
|
3403 | pub const IW_SCAN_ALL_ESSID: ::c_ulong = 0x0001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3403 - pub const IW_SCAN_ALL_ESSID: ::c_ulong = 0x0001;
3403 + pub const IW_SCAN_ALL_ESSID: c_ulong = 0x0001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3404:33
|
3404 | pub const IW_SCAN_THIS_ESSID: ::c_ulong = 0x0002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3404 - pub const IW_SCAN_THIS_ESSID: ::c_ulong = 0x0002;
3404 + pub const IW_SCAN_THIS_ESSID: c_ulong = 0x0002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3405:31
|
3405 | pub const IW_SCAN_ALL_FREQ: ::c_ulong = 0x0004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3405 - pub const IW_SCAN_ALL_FREQ: ::c_ulong = 0x0004;
3405 + pub const IW_SCAN_ALL_FREQ: c_ulong = 0x0004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3406:32
|
3406 | pub const IW_SCAN_THIS_FREQ: ::c_ulong = 0x0008;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3406 - pub const IW_SCAN_THIS_FREQ: ::c_ulong = 0x0008;
3406 + pub const IW_SCAN_THIS_FREQ: c_ulong = 0x0008;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3407:31
|
3407 | pub const IW_SCAN_ALL_MODE: ::c_ulong = 0x0010;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3407 - pub const IW_SCAN_ALL_MODE: ::c_ulong = 0x0010;
3407 + pub const IW_SCAN_ALL_MODE: c_ulong = 0x0010;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3408:32
|
3408 | pub const IW_SCAN_THIS_MODE: ::c_ulong = 0x0020;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3408 - pub const IW_SCAN_THIS_MODE: ::c_ulong = 0x0020;
3408 + pub const IW_SCAN_THIS_MODE: c_ulong = 0x0020;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3409:31
|
3409 | pub const IW_SCAN_ALL_RATE: ::c_ulong = 0x0040;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3409 - pub const IW_SCAN_ALL_RATE: ::c_ulong = 0x0040;
3409 + pub const IW_SCAN_ALL_RATE: c_ulong = 0x0040;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3410:32
|
3410 | pub const IW_SCAN_THIS_RATE: ::c_ulong = 0x0080;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3410 - pub const IW_SCAN_THIS_RATE: ::c_ulong = 0x0080;
3410 + pub const IW_SCAN_THIS_RATE: c_ulong = 0x0080;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3417:32
|
3417 | pub const IW_SCAN_CAPA_NONE: ::c_ulong = 0x00;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3417 - pub const IW_SCAN_CAPA_NONE: ::c_ulong = 0x00;
3417 + pub const IW_SCAN_CAPA_NONE: c_ulong = 0x00;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3418:33
|
3418 | pub const IW_SCAN_CAPA_ESSID: ::c_ulong = 0x01;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3418 - pub const IW_SCAN_CAPA_ESSID: ::c_ulong = 0x01;
3418 + pub const IW_SCAN_CAPA_ESSID: c_ulong = 0x01;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3419:33
|
3419 | pub const IW_SCAN_CAPA_BSSID: ::c_ulong = 0x02;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3419 - pub const IW_SCAN_CAPA_BSSID: ::c_ulong = 0x02;
3419 + pub const IW_SCAN_CAPA_BSSID: c_ulong = 0x02;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3420:35
|
3420 | pub const IW_SCAN_CAPA_CHANNEL: ::c_ulong = 0x04;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3420 - pub const IW_SCAN_CAPA_CHANNEL: ::c_ulong = 0x04;
3420 + pub const IW_SCAN_CAPA_CHANNEL: c_ulong = 0x04;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3421:32
|
3421 | pub const IW_SCAN_CAPA_MODE: ::c_ulong = 0x08;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3421 - pub const IW_SCAN_CAPA_MODE: ::c_ulong = 0x08;
3421 + pub const IW_SCAN_CAPA_MODE: c_ulong = 0x08;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3422:32
|
3422 | pub const IW_SCAN_CAPA_RATE: ::c_ulong = 0x10;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3422 - pub const IW_SCAN_CAPA_RATE: ::c_ulong = 0x10;
3422 + pub const IW_SCAN_CAPA_RATE: c_ulong = 0x10;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3423:32
|
3423 | pub const IW_SCAN_CAPA_TYPE: ::c_ulong = 0x20;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3423 - pub const IW_SCAN_CAPA_TYPE: ::c_ulong = 0x20;
3423 + pub const IW_SCAN_CAPA_TYPE: c_ulong = 0x20;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3424:32
|
3424 | pub const IW_SCAN_CAPA_TIME: ::c_ulong = 0x40;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3424 - pub const IW_SCAN_CAPA_TIME: ::c_ulong = 0x40;
3424 + pub const IW_SCAN_CAPA_TIME: c_ulong = 0x40;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3426:28
|
3426 | pub const IW_CUSTOM_MAX: ::c_ulong = 256;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3426 - pub const IW_CUSTOM_MAX: ::c_ulong = 256;
3426 + pub const IW_CUSTOM_MAX: c_ulong = 256;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3428:32
|
3428 | pub const IW_GENERIC_IE_MAX: ::c_ulong = 1024;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3428 - pub const IW_GENERIC_IE_MAX: ::c_ulong = 1024;
3428 + pub const IW_GENERIC_IE_MAX: c_ulong = 1024;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3430:29
|
3430 | pub const IW_MLME_DEAUTH: ::c_ulong = 0;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3430 - pub const IW_MLME_DEAUTH: ::c_ulong = 0;
3430 + pub const IW_MLME_DEAUTH: c_ulong = 0;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3431:31
|
3431 | pub const IW_MLME_DISASSOC: ::c_ulong = 1;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3431 - pub const IW_MLME_DISASSOC: ::c_ulong = 1;
3431 + pub const IW_MLME_DISASSOC: c_ulong = 1;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3432:27
|
3432 | pub const IW_MLME_AUTH: ::c_ulong = 2;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3432 - pub const IW_MLME_AUTH: ::c_ulong = 2;
3432 + pub const IW_MLME_AUTH: c_ulong = 2;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3433:28
|
3433 | pub const IW_MLME_ASSOC: ::c_ulong = 3;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3433 - pub const IW_MLME_ASSOC: ::c_ulong = 3;
3433 + pub const IW_MLME_ASSOC: c_ulong = 3;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3435:28
|
3435 | pub const IW_AUTH_INDEX: ::c_ulong = 0x0FFF;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3435 - pub const IW_AUTH_INDEX: ::c_ulong = 0x0FFF;
3435 + pub const IW_AUTH_INDEX: c_ulong = 0x0FFF;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3436:28
|
3436 | pub const IW_AUTH_FLAGS: ::c_ulong = 0xF000;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3436 - pub const IW_AUTH_FLAGS: ::c_ulong = 0xF000;
3436 + pub const IW_AUTH_FLAGS: c_ulong = 0xF000;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3452:43
|
3452 | pub const IW_AUTH_WPA_VERSION_DISABLED: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3452 - pub const IW_AUTH_WPA_VERSION_DISABLED: ::c_ulong = 0x00000001;
3452 + pub const IW_AUTH_WPA_VERSION_DISABLED: c_ulong = 0x00000001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3453:38
|
3453 | pub const IW_AUTH_WPA_VERSION_WPA: ::c_ulong = 0x00000002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3453 - pub const IW_AUTH_WPA_VERSION_WPA: ::c_ulong = 0x00000002;
3453 + pub const IW_AUTH_WPA_VERSION_WPA: c_ulong = 0x00000002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3454:39
|
3454 | pub const IW_AUTH_WPA_VERSION_WPA2: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3454 - pub const IW_AUTH_WPA_VERSION_WPA2: ::c_ulong = 0x00000004;
3454 + pub const IW_AUTH_WPA_VERSION_WPA2: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3456:34
|
3456 | pub const IW_AUTH_CIPHER_NONE: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3456 - pub const IW_AUTH_CIPHER_NONE: ::c_ulong = 0x00000001;
3456 + pub const IW_AUTH_CIPHER_NONE: c_ulong = 0x00000001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3457:35
|
3457 | pub const IW_AUTH_CIPHER_WEP40: ::c_ulong = 0x00000002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3457 - pub const IW_AUTH_CIPHER_WEP40: ::c_ulong = 0x00000002;
3457 + pub const IW_AUTH_CIPHER_WEP40: c_ulong = 0x00000002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3458:34
|
3458 | pub const IW_AUTH_CIPHER_TKIP: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3458 - pub const IW_AUTH_CIPHER_TKIP: ::c_ulong = 0x00000004;
3458 + pub const IW_AUTH_CIPHER_TKIP: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3459:34
|
3459 | pub const IW_AUTH_CIPHER_CCMP: ::c_ulong = 0x00000008;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3459 - pub const IW_AUTH_CIPHER_CCMP: ::c_ulong = 0x00000008;
3459 + pub const IW_AUTH_CIPHER_CCMP: c_ulong = 0x00000008;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3460:36
|
3460 | pub const IW_AUTH_CIPHER_WEP104: ::c_ulong = 0x00000010;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3460 - pub const IW_AUTH_CIPHER_WEP104: ::c_ulong = 0x00000010;
3460 + pub const IW_AUTH_CIPHER_WEP104: c_ulong = 0x00000010;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3461:38
|
3461 | pub const IW_AUTH_CIPHER_AES_CMAC: ::c_ulong = 0x00000020;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3461 - pub const IW_AUTH_CIPHER_AES_CMAC: ::c_ulong = 0x00000020;
3461 + pub const IW_AUTH_CIPHER_AES_CMAC: c_ulong = 0x00000020;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3466:38
|
3466 | pub const IW_AUTH_ALG_OPEN_SYSTEM: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3466 - pub const IW_AUTH_ALG_OPEN_SYSTEM: ::c_ulong = 0x00000001;
3466 + pub const IW_AUTH_ALG_OPEN_SYSTEM: c_ulong = 0x00000001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3467:37
|
3467 | pub const IW_AUTH_ALG_SHARED_KEY: ::c_ulong = 0x00000002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3467 - pub const IW_AUTH_ALG_SHARED_KEY: ::c_ulong = 0x00000002;
3467 + pub const IW_AUTH_ALG_SHARED_KEY: c_ulong = 0x00000002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3468:31
|
3468 | pub const IW_AUTH_ALG_LEAP: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3468 - pub const IW_AUTH_ALG_LEAP: ::c_ulong = 0x00000004;
3468 + pub const IW_AUTH_ALG_LEAP: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3486:41
|
3486 | pub const IW_ENCODE_EXT_TX_SEQ_VALID: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3486 - pub const IW_ENCODE_EXT_TX_SEQ_VALID: ::c_ulong = 0x00000001;
3486 + pub const IW_ENCODE_EXT_TX_SEQ_VALID: c_ulong = 0x00000001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3487:41
|
3487 | pub const IW_ENCODE_EXT_RX_SEQ_VALID: ::c_ulong = 0x00000002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3487 - pub const IW_ENCODE_EXT_RX_SEQ_VALID: ::c_ulong = 0x00000002;
3487 + pub const IW_ENCODE_EXT_RX_SEQ_VALID: c_ulong = 0x00000002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3488:38
|
3488 | pub const IW_ENCODE_EXT_GROUP_KEY: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3488 - pub const IW_ENCODE_EXT_GROUP_KEY: ::c_ulong = 0x00000004;
3488 + pub const IW_ENCODE_EXT_GROUP_KEY: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3489:39
|
3489 | pub const IW_ENCODE_EXT_SET_TX_KEY: ::c_ulong = 0x00000008;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3489 - pub const IW_ENCODE_EXT_SET_TX_KEY: ::c_ulong = 0x00000008;
3489 + pub const IW_ENCODE_EXT_SET_TX_KEY: c_ulong = 0x00000008;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3491:35
|
3491 | pub const IW_MICFAILURE_KEY_ID: ::c_ulong = 0x00000003;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3491 - pub const IW_MICFAILURE_KEY_ID: ::c_ulong = 0x00000003;
3491 + pub const IW_MICFAILURE_KEY_ID: c_ulong = 0x00000003;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3492:34
|
3492 | pub const IW_MICFAILURE_GROUP: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3492 - pub const IW_MICFAILURE_GROUP: ::c_ulong = 0x00000004;
3492 + pub const IW_MICFAILURE_GROUP: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3493:37
|
3493 | pub const IW_MICFAILURE_PAIRWISE: ::c_ulong = 0x00000008;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3493 - pub const IW_MICFAILURE_PAIRWISE: ::c_ulong = 0x00000008;
3493 + pub const IW_MICFAILURE_PAIRWISE: c_ulong = 0x00000008;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3494:35
|
3494 | pub const IW_MICFAILURE_STAKEY: ::c_ulong = 0x00000010;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3494 - pub const IW_MICFAILURE_STAKEY: ::c_ulong = 0x00000010;
3494 + pub const IW_MICFAILURE_STAKEY: c_ulong = 0x00000010;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3495:34
|
3495 | pub const IW_MICFAILURE_COUNT: ::c_ulong = 0x00000060;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3495 - pub const IW_MICFAILURE_COUNT: ::c_ulong = 0x00000060;
3495 + pub const IW_MICFAILURE_COUNT: c_ulong = 0x00000060;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3497:30
|
3497 | pub const IW_ENC_CAPA_WPA: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3497 - pub const IW_ENC_CAPA_WPA: ::c_ulong = 0x00000001;
3497 + pub const IW_ENC_CAPA_WPA: c_ulong = 0x00000001;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3498:31
|
3498 | pub const IW_ENC_CAPA_WPA2: ::c_ulong = 0x00000002;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3498 - pub const IW_ENC_CAPA_WPA2: ::c_ulong = 0x00000002;
3498 + pub const IW_ENC_CAPA_WPA2: c_ulong = 0x00000002;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3499:38
|
3499 | pub const IW_ENC_CAPA_CIPHER_TKIP: ::c_ulong = 0x00000004;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3499 - pub const IW_ENC_CAPA_CIPHER_TKIP: ::c_ulong = 0x00000004;
3499 + pub const IW_ENC_CAPA_CIPHER_TKIP: c_ulong = 0x00000004;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3500:38
|
3500 | pub const IW_ENC_CAPA_CIPHER_CCMP: ::c_ulong = 0x00000008;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3500 - pub const IW_ENC_CAPA_CIPHER_CCMP: ::c_ulong = 0x00000008;
3500 + pub const IW_ENC_CAPA_CIPHER_CCMP: c_ulong = 0x00000008;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3501:41
|
3501 | pub const IW_ENC_CAPA_4WAY_HANDSHAKE: ::c_ulong = 0x00000010;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3501 - pub const IW_ENC_CAPA_4WAY_HANDSHAKE: ::c_ulong = 0x00000010;
3501 + pub const IW_ENC_CAPA_4WAY_HANDSHAKE: c_ulong = 0x00000010;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:3509:36
|
3509 | pub const IW_PMKID_CAND_PREAUTH: ::c_ulong = 0x00000001;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
3509 - pub const IW_PMKID_CAND_PREAUTH: ::c_ulong = 0x00000001;
3509 + pub const IW_PMKID_CAND_PREAUTH: c_ulong = 0x00000001;
|
error[E0425]: cannot find value `O_CLOEXEC` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4070:33
|
4070 | pub const IN_CLOEXEC: ::c_int = O_CLOEXEC;
| ^^^^^^^^^ not found in this scope
error[E0425]: cannot find value `O_NONBLOCK` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4071:34
|
4071 | pub const IN_NONBLOCK: ::c_int = O_NONBLOCK;
| ^^^^^^^^^^ not found in this scope
error[E0425]: cannot find value `O_CLOEXEC` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4075:41
|
4070 | pub const IN_CLOEXEC: ::c_int = O_CLOEXEC;
| ------------------------------------------ similarly named constant `IN_CLOEXEC` defined here
...
4075 | pub const OPEN_TREE_CLOEXEC: ::c_uint = O_CLOEXEC as ::c_uint;
| ^^^^^^^^^ help: a constant with a similar name exists: `IN_CLOEXEC`
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4606:28
|
4606 | pub const J1939_NO_NAME: ::c_ulong = 0;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
4606 - pub const J1939_NO_NAME: ::c_ulong = 0;
4606 + pub const J1939_NO_NAME: c_ulong = 0;
|
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4950:27
|
4950 | pub const EPIOCSPARAMS: ::Ioctl = 0x40088a01;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4951:27
|
4951 | pub const EPIOCGPARAMS: ::Ioctl = 0x80088a02;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `msghdr` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4958:37
|
4958 | pub fn CMSG_NXTHDR(mhdr: *const msghdr,
| ^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4959:37
|
4959 | cmsg: *const cmsghdr) -> *mut cmsghdr {
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4959:54
|
4959 | cmsg: *const cmsghdr) -> *mut cmsghdr {
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4960:59
|
4960 | if ((*cmsg).cmsg_len as usize) < ::mem::size_of::<cmsghdr>() {
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4961:30
|
4961 | return 0 as *mut cmsghdr;
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4965:21
|
4965 | as *mut cmsghdr;
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4971:23
|
4971 | 0 as *mut cmsghdr
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:4973:26
|
4973 | next as *mut cmsghdr
| ^^^^^^^ help: a struct with a similar name exists: `nlmsghdr`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `nlmsghdr` defined here
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5129:42
|
5129 | pub fn aio_read(aiocbp: *mut aiocb) -> ::c_int;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5130:43
|
5130 | pub fn aio_write(aiocbp: *mut aiocb) -> ::c_int;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5131:56
|
5131 | pub fn aio_fsync(op: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5132:45
|
5132 | pub fn aio_error(aiocbp: *const aiocb) -> ::c_int;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5133:44
|
5133 | pub fn aio_return(aiocbp: *mut aiocb) -> ::ssize_t;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5135:43
|
5135 | aiocb_list: *const *const aiocb,
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5139:57
|
5139 | pub fn aio_cancel(fd: ::c_int, aiocbp: *mut aiocb) -> ::c_int;
| ^^^^^ not found in this scope
error[E0412]: cannot find type `aiocb` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5142:41
|
5142 | aiocb_list: *const *mut aiocb,
| ^^^^^ not found in this scope
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5157:27
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5157 | offset: ::off_t,
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5163:27
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5163 | offset: ::off_t,
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5168:30
|
5168 | host: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5168 | host: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5168 - host: *mut ::c_char,
5168 + host: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5170:30
|
5170 | serv: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5170 | serv: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5170 - serv: *mut ::c_char,
5170 + serv: *mut c_char,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5181:28
|
5181 | liovcnt: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5181 - liovcnt: ::c_ulong,
5181 + liovcnt: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5183:28
|
5183 | riovcnt: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5183 - riovcnt: ::c_ulong,
5183 + riovcnt: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5184:26
|
5184 | flags: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5184 - flags: ::c_ulong,
5184 + flags: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5189:28
|
5189 | liovcnt: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5189 - liovcnt: ::c_ulong,
5189 + liovcnt: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5191:28
|
5191 | riovcnt: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5191 - riovcnt: ::c_ulong,
5191 + riovcnt: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5192:26
|
5192 | flags: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5192 - flags: ::c_ulong,
5192 + flags: c_ulong,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5210:32
|
5210 | name: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5210 | name: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5210 - name: *const ::c_char,
5210 + name: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5212:29
|
5212 | buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5212 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5212 - buf: *mut ::c_char,
5212 + buf: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5217:43
|
5217 | pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5217 | pub fn mq_open(name: *const ::c_schar, oflag: ::c_int, ...) -> ::mqd_t;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5217 - pub fn mq_open(name: *const ::c_char, oflag: ::c_int, ...) -> ::mqd_t;
5217 + pub fn mq_open(name: *const c_char, oflag: ::c_int, ...) -> ::mqd_t;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5219:45
|
5219 | pub fn mq_unlink(name: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5219 | pub fn mq_unlink(name: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5219 - pub fn mq_unlink(name: *const ::c_char) -> ::c_int;
5219 + pub fn mq_unlink(name: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5222:33
|
5222 | msg_ptr: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5222 | msg_ptr: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5222 - msg_ptr: *mut ::c_char,
5222 + msg_ptr: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5228:33
|
5228 | msg_ptr: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5228 | msg_ptr: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5228 - msg_ptr: *mut ::c_char,
5228 + msg_ptr: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5235:35
|
5235 | msg_ptr: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5235 | msg_ptr: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5235 - msg_ptr: *const ::c_char,
5235 + msg_ptr: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5241:35
|
5241 | msg_ptr: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5241 | msg_ptr: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5241 - msg_ptr: *const ::c_char,
5241 + msg_ptr: *const c_char,
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5254:45
|
5254 | pub fn pthread_cancel(thread: ::pthread_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5272:50
|
5272 | 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
|
5272 | pub fn strerror_r(errnum: ::c_int, buf: *mut char, buflen: ::size_t) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5275:22
|
5275 | pub fn labs(i: ::c_long) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5275 - pub fn labs(i: ::c_long) -> ::c_long;
5275 + pub fn labs(i: c_long) -> ::c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5275:35
|
5275 | pub fn labs(i: ::c_long) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5275 - pub fn labs(i: ::c_long) -> ::c_long;
5275 + pub fn labs(i: ::c_long) -> c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5281:27
|
5281 | pub fn lrand48() -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5281 - pub fn lrand48() -> ::c_long;
5281 + pub fn lrand48() -> c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5282:49
|
5282 | pub fn nrand48(xseed: *mut ::c_ushort) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5282 - pub fn nrand48(xseed: *mut ::c_ushort) -> ::c_long;
5282 + pub fn nrand48(xseed: *mut ::c_ushort) -> c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5283:27
|
5283 | pub fn mrand48() -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5283 - pub fn mrand48() -> ::c_long;
5283 + pub fn mrand48() -> c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5284:49
|
5284 | pub fn jrand48(xseed: *mut ::c_ushort) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5284 - pub fn jrand48(xseed: *mut ::c_ushort) -> ::c_long;
5284 + pub fn jrand48(xseed: *mut ::c_ushort) -> c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5285:28
|
5285 | pub fn srand48(seed: ::c_long);
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5285 - pub fn srand48(seed: ::c_long);
5285 + pub fn srand48(seed: c_long);
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5289:35
|
5289 | pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5289 | pub fn lutimes(file: *const ::c_schar, times: *const ::timeval) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5289 - pub fn lutimes(file: *const ::c_char, times: *const ::timeval) -> ::c_int;
5289 + pub fn lutimes(file: *const c_char, times: *const ::timeval) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5301:36
|
5301 | pub fn getspnam(name: *const ::c_char) -> *mut spwd;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5301 | pub fn getspnam(name: *const ::c_schar) -> *mut spwd;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5301 - pub fn getspnam(name: *const ::c_char) -> *mut spwd;
5301 + pub fn getspnam(name: *const c_char) -> *mut spwd;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5303:34
|
5303 | 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
|
5303 | pub fn shm_open(name: *const char, oflag: ::c_int, mode: mode_t) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5304:38
|
5304 | pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5304 | pub fn shm_unlink(name: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5304 - pub fn shm_unlink(name: *const ::c_char) -> ::c_int;
5304 + pub fn shm_unlink(name: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `shmid_ds` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5310:61
|
5310 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5311:36
|
5311 | pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5311 | pub fn ftok(pathname: *const ::c_schar, proj_id: ::c_int) -> ::key_t;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5311 - pub fn ftok(pathname: *const ::c_char, proj_id: ::c_int) -> ::key_t;
5311 + pub fn ftok(pathname: *const c_char, proj_id: ::c_int) -> ::key_t;
|
error[E0412]: cannot find type `msqid_ds` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5315:59
|
5315 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5321:19
|
5321 | msgtyp: ::c_long,
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5321 - msgtyp: ::c_long,
5321 + msgtyp: c_long,
|
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5334:60
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5334 | pub fn fallocate(fd: ::c_int, mode: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5334:74
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5334 | pub fn fallocate(fd: ::c_int, mode: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5335:51
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5335 | pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `off_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5335:65
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5335 | pub fn posix_fallocate(fd: ::c_int, offset: ::off_t, len: ::off_t) -> ::c_int;
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5338:22
|
5338 | path: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5338 | path: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5339:22
|
5339 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5339 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5344:22
|
5344 | path: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5344 | path: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5345:22
|
5345 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5345 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5351:22
|
5351 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5351 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5356:22
|
5356 | path: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5356 | path: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5357:22
|
5357 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5357 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5363:22
|
5363 | path: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5363 | path: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5364:22
|
5364 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5364 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5371:22
|
5371 | name: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5371 | name: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5376:35
|
5376 | 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
|
5376 | pub fn listxattr(path: *const char, list: *mut c_char, size: ::size_t) -> ::ssize_t;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5376:54
|
5376 | 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
|
5376 | pub fn listxattr(path: *const c_char, list: *mut char, size: ::size_t) -> ::ssize_t;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5377:36
|
5377 | 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
|
5377 | pub fn llistxattr(path: *const char, list: *mut c_char, size: ::size_t) -> ::ssize_t;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5377:55
|
5377 | 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
|
5377 | pub fn llistxattr(path: *const c_char, list: *mut char, size: ::size_t) -> ::ssize_t;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5378:52
|
5378 | pub fn flistxattr(filedes: ::c_int, list: *mut c_char, size: ::size_t) -> ::ssize_t;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5378 | pub fn flistxattr(filedes: ::c_int, list: *mut char, size: ::size_t) -> ::ssize_t;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5379:37
|
5379 | pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5379 | pub fn removexattr(path: *const char, name: *const c_char) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5379:58
|
5379 | pub fn removexattr(path: *const c_char, name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5379 | pub fn removexattr(path: *const c_char, name: *const char) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5380:38
|
5380 | pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5380 | pub fn lremovexattr(path: *const char, name: *const c_char) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5380:59
|
5380 | pub fn lremovexattr(path: *const c_char, name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5380 | pub fn lremovexattr(path: *const c_char, name: *const char) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5381:56
|
5381 | pub fn fremovexattr(filedes: ::c_int, name: *const c_char) -> ::c_int;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5381 | pub fn fremovexattr(filedes: ::c_int, name: *const char) -> ::c_int;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5382:49
|
5382 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5393:27
|
5393 | special: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5393 | special: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5393 - special: *const ::c_char,
5393 + special: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5395:22
|
5395 | data: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5395 | data: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5395 - data: *mut ::c_char,
5395 + data: *mut c_char,
|
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5402:27
|
5402 | sigmask: *const ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5405:38
|
5405 | pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5405 | pub fn mkostemp(template: *mut ::c_schar, flags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5405 - pub fn mkostemp(template: *mut ::c_char, flags: ::c_int) -> ::c_int;
5405 + pub fn mkostemp(template: *mut c_char, flags: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5406:39
|
5406 | pub fn mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5406 | pub fn mkostemps(template: *mut ::c_schar, suffixlen: ::c_int, flags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5406 - pub fn mkostemps(template: *mut ::c_char, suffixlen: ::c_int, flags: ::c_int) -> ::c_int;
5406 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5408:21
|
5408 | set: *const sigset_t,
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `siginfo_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5409:20
|
5409 | info: *mut siginfo_t,
| ^^^^^^^^^ not found in this scope
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5412:36
|
5412 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5412:57
|
5412 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5413:73
|
5413 | pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5413 | pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5413 - pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut ::c_char;
5413 + pub fn nl_langinfo_l(item: ::nl_item, locale: ::locale_t) -> *mut c_char;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5421:19
|
5421 | thread: ::pthread_t,
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5426:19
|
5426 | thread: ::pthread_t,
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5430:43
|
5430 | pub fn pthread_setschedprio(native: ::pthread_t, priority: ::c_int) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5436:56
|
5436 | pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5436 | pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_schar, mode: ::mode_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5436 - pub fn mkfifoat(dirfd: ::c_int, pathname: *const ::c_char, mode: ::mode_t) -> ::c_int;
5436 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5454:25
|
5454 | pattern: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5454 | pattern: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5456:55
|
5456 | errfunc: ::Option<extern "C" fn(epath: *const c_char, errno: ::c_int) -> ::c_int>,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5456 | errfunc: ::Option<extern "C" fn(epath: *const char, errno: ::c_int) -> ::c_int>,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5463:45
|
5463 | pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5463 - pub fn seekdir(dirp: *mut ::DIR, loc: ::c_long);
5463 + pub fn seekdir(dirp: *mut ::DIR, loc: c_long);
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5465:43
|
5465 | pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5465 - pub fn telldir(dirp: *mut ::DIR) -> ::c_long;
5465 + pub fn telldir(dirp: *mut ::DIR) -> c_long;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5484:38
|
5484 | pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5484 | pub fn mkstemps(template: *mut ::c_schar, suffixlen: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5484 - pub fn mkstemps(template: *mut ::c_char, suffixlen: ::c_int) -> ::c_int;
5484 + pub fn mkstemps(template: *mut c_char, suffixlen: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5486:51
|
5486 | pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5486 | pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5486 - pub fn nl_langinfo(item: ::nl_item) -> *mut ::c_char;
5486 + pub fn nl_langinfo(item: ::nl_item) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5488:39
|
5488 | pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5488 | pub fn getdomainname(name: *mut ::c_schar, len: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5488 - pub fn getdomainname(name: *mut ::c_char, len: ::size_t) -> ::c_int;
5488 + pub fn getdomainname(name: *mut c_char, len: ::size_t) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5489:41
|
5489 | pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5489 | pub fn setdomainname(name: *const ::c_schar, len: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5489 - pub fn setdomainname(name: *const ::c_char, len: ::size_t) -> ::c_int;
5489 + pub fn setdomainname(name: *const c_char, len: ::size_t) -> ::c_int;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5493:27
|
5493 | pub fn syscall(num: ::c_long, ...) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5493 - pub fn syscall(num: ::c_long, ...) -> ::c_long;
5493 + pub fn syscall(num: c_long, ...) -> ::c_long;
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5493:45
|
5493 | pub fn syscall(num: ::c_long, ...) -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5493 - pub fn syscall(num: ::c_long, ...) -> ::c_long;
5493 + pub fn syscall(num: ::c_long, ...) -> c_long;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5512:19
|
5512 | native: ::pthread_t,
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5517:36
|
5517 | pub fn umount(target: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 | pub fn umount(target: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5517 - pub fn umount(target: *const ::c_char) -> ::c_int;
5517 + pub fn umount(target: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `sem_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5534:36
|
5534 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5535:35
|
5535 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5538:35
|
5538 | pub fn swapoff(path: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5538 | pub fn swapoff(path: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5538 - pub fn swapoff(path: *const ::c_char) -> ::c_int;
5538 + pub fn swapoff(path: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5546:23
|
5546 | src: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 | src: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5546 - src: *const ::c_char,
5546 + src: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5547:26
|
5547 | target: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5547 | target: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5547 - target: *const ::c_char,
5547 + target: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5548:26
|
5548 | fstype: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5548 | fstype: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5548 - fstype: *const ::c_char,
5548 + fstype: *const c_char,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5549:18
|
5549 | flags: ::c_ulong,
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5549 - flags: ::c_ulong,
5549 + flags: c_ulong,
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5552:35
|
5552 | pub fn personality(persona: ::c_ulong) -> ::c_int;
| ^^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_ulong;
|
help: if you import `c_ulong`, refer to it directly
|
5552 - pub fn personality(persona: ::c_ulong) -> ::c_int;
5552 + pub fn personality(persona: c_ulong) -> ::c_int;
|
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5559:25
|
5559 | sigmask: *const sigset_t,
| ^^^^^^^^ not found in this scope
error[E0412]: cannot find type `pthread_attr_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5611:24
|
5611 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5614:51
|
5614 | 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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5616:24
|
5616 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5620:22
|
5620 | attr: *mut ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5624:24
|
5624 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5627:53
|
5627 | 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`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5629:24
|
5629 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5633:22
|
5633 | attr: *mut ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5636:39
|
5636 | pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5636 | pub fn sethostname(name: *const ::c_schar, len: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5636 - pub fn sethostname(name: *const ::c_char, len: ::size_t) -> ::c_int;
5636 + pub fn sethostname(name: *const c_char, len: ::size_t) -> ::c_int;
|
error[E0573]: expected type, found function `sysinfo`
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5642:31
|
5642 | pub fn sysinfo(info: *mut ::sysinfo) -> ::c_int;
| ^^^^^^^^^ not a type
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5643:37
|
5643 | pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5643 | pub fn umount2(target: *const ::c_schar, flags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5643 - pub fn umount2(target: *const ::c_char, flags: ::c_int) -> ::c_int;
5643 + pub fn umount2(target: *const c_char, flags: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5645:19
|
5645 | native: ::pthread_t,
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5649:34
|
5649 | pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5649 | pub fn swapon(path: *const ::c_schar, swapflags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5649 - pub fn swapon(path: *const ::c_char, swapflags: ::c_int) -> ::c_int;
5649 + pub fn swapon(path: *const c_char, swapflags: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `off_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5658:22
|
15 | pub type loff_t = ::c_longlong;
| ------------------------------- similarly named type alias `loff_t` defined here
...
5658 | offset: *mut off_t,
| ^^^^^ help: a type alias with a similar name exists: `loff_t`
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5661:38
|
5661 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5665:21
|
5665 | buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5665 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5665 - buf: *mut ::c_char,
5665 + buf: *mut c_char,
|
error[E0412]: cannot find type `stack_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5669:35
|
5669 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5669:54
|
5669 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5670:32
|
5670 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5673:24
|
5673 | name: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5673 | name: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5673 - name: *const ::c_char,
5673 + name: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5675:21
|
5675 | buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5675 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5675 - buf: *mut ::c_char,
5675 + buf: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5679:38
|
5679 | pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5679 | pub fn initgroups(user: *const ::c_schar, group: ::gid_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5679 - pub fn initgroups(user: *const ::c_char, group: ::gid_t) -> ::c_int;
5679 + pub fn initgroups(user: *const c_char, group: ::gid_t) -> ::c_int;
|
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5680:54
|
5680 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5680:77
|
5680 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5681:36
|
5681 | pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5681 | pub fn sem_open(name: *const ::c_schar, oflag: ::c_int, ...) -> *mut sem_t;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5681 - pub fn sem_open(name: *const ::c_char, oflag: ::c_int, ...) -> *mut sem_t;
5681 + pub fn sem_open(name: *const c_char, oflag: ::c_int, ...) -> *mut sem_t;
|
error[E0412]: cannot find type `sem_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5681:73
|
5681 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5682:36
|
5682 | pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5682 | pub fn getgrnam(name: *const ::c_schar) -> *mut ::group;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5682 - pub fn getgrnam(name: *const ::c_char) -> *mut ::group;
5682 + pub fn getgrnam(name: *const c_char) -> *mut ::group;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5683:35
|
5683 | pub fn pthread_kill(thread: ::pthread_t, sig: ::c_int) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5684:38
|
5684 | pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5684 | pub fn sem_unlink(name: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5684 - pub fn sem_unlink(name: *const ::c_char) -> ::c_int;
5684 + pub fn sem_unlink(name: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5687:24
|
5687 | name: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5687 | name: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5687 - name: *const ::c_char,
5687 + name: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5689:21
|
5689 | buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5689 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5689 - buf: *mut ::c_char,
5689 + buf: *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5696:21
|
5696 | buf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5696 | buf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5696 - buf: *mut ::c_char,
5696 + buf: *mut c_char,
|
error[E0412]: cannot find type `sigset_t` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5700:32
|
5700 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5708:24
|
5708 | user: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5708 | user: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5708 - user: *const ::c_char,
5708 + user: *const c_char,
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5717:34
|
5717 | pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5717 | pub fn popen(command: *const char, mode: *const c_char) -> *mut ::FILE;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5717:55
|
5717 | pub fn popen(command: *const c_char, mode: *const c_char) -> *mut ::FILE;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5717 | pub fn popen(command: *const c_char, mode: *const char) -> *mut ::FILE;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5720:28
|
5720 | pathname: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5720 | pathname: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5720 - pathname: *const ::c_char,
5720 + pathname: *const c_char,
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5725:24
|
5725 | native: *mut ::pthread_t,
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_attr_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5726:24
|
5726 | attr: *const ::pthread_attr_t,
| ^^^^^^^^^^^^^^ help: a struct with a similar name exists: `pthread_cond_t`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5741:41
|
5741 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5741 | pub fn setmntent(filename: *const ::c_schar, ty: *const ::c_char) -> *mut ::FILE;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5741 - pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE;
5741 + pub fn setmntent(filename: *const c_char, ty: *const ::c_char) -> *mut ::FILE;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5741:62
|
5741 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5741 | pub fn setmntent(filename: *const ::c_char, ty: *const ::c_schar) -> *mut ::FILE;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5741 - pub fn setmntent(filename: *const ::c_char, ty: *const ::c_char) -> *mut ::FILE;
5741 + pub fn setmntent(filename: *const ::c_char, ty: *const c_char) -> *mut ::FILE;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5745:58
|
5745 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5745 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_schar) -> *mut ::c_char;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5745 - pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char;
5745 + pub fn hasmntopt(mnt: *const ::mntent, opt: *const c_char) -> *mut ::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5745:76
|
5745 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5745 | pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_schar;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5745 - pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut ::c_char;
5745 + pub fn hasmntopt(mnt: *const ::mntent, opt: *const ::c_char) -> *mut c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5749:24
|
5749 | path: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5749 | path: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5749 - path: *const ::c_char,
5749 + path: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5752:29
|
5752 | argv: *const *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5752 | argv: *const *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5752 - argv: *const *mut ::c_char,
5752 + argv: *const *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5753:29
|
5753 | envp: *const *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5753 | envp: *const *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5753 - envp: *const *mut ::c_char,
5753 + envp: *const *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5757:24
|
5757 | file: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5757 | file: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5757 - file: *const ::c_char,
5757 + file: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5760:29
|
5760 | argv: *const *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5760 | argv: *const *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5760 - argv: *const *mut ::c_char,
5760 + argv: *const *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5761:29
|
5761 | envp: *const *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5761 | envp: *const *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5761 - envp: *const *mut ::c_char,
5761 + envp: *const *mut c_char,
|
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5767:25
|
5767 | default: *mut ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5771:27
|
5771 | default: *const ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5775:25
|
5775 | default: *mut ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `sigset_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5779:27
|
5779 | default: *const ::sigset_t,
| ^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5810:24
|
5810 | path: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5810 | path: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5810 - path: *const ::c_char,
5810 + path: *const c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5832:58
|
5832 | pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_char, mask: u32) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5832 | pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_schar, mask: u32) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5832 - pub fn inotify_add_watch(fd: ::c_int, path: *const ::c_char, mask: u32) -> ::c_int;
5832 + pub fn inotify_add_watch(fd: ::c_int, path: *const c_char, mask: u32) -> ::c_int;
|
error[E0412]: cannot find type `regex_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5835:33
|
5835 | pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int;
| ^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5835:60
|
5835 | pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5835 | pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_schar, cflags: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5835 - pub fn regcomp(preg: *mut ::regex_t, pattern: *const ::c_char, cflags: ::c_int) -> ::c_int;
5835 + pub fn regcomp(preg: *mut ::regex_t, pattern: *const c_char, cflags: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `regex_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5838:24
|
5838 | preg: *const ::regex_t,
| ^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5839:25
|
5839 | input: *const ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5839 | input: *const ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5839 - input: *const ::c_char,
5839 + input: *const c_char,
|
error[E0412]: cannot find type `regex_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5847:24
|
5847 | preg: *const ::regex_t,
| ^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5848:24
|
5848 | errbuf: *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5848 | errbuf: *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5848 - errbuf: *mut ::c_char,
5848 + errbuf: *mut c_char,
|
error[E0412]: cannot find type `regex_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5852:33
|
5852 | pub fn regfree(preg: *mut ::regex_t);
| ^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5854:40
|
5854 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5854 | pub fn iconv_open(tocode: *const ::c_schar, fromcode: *const ::c_char) -> iconv_t;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5854 - pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t;
5854 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5854:67
|
5854 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5854 | pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_schar) -> iconv_t;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5854 - pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t;
5854 + 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5857:28
|
5857 | inbuf: *mut *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5857 | inbuf: *mut *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5857 - inbuf: *mut *mut ::c_char,
5857 + inbuf: *mut *mut c_char,
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5859:29
|
5859 | outbuf: *mut *mut ::c_char,
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5859 | outbuf: *mut *mut ::c_schar,
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5859 - outbuf: *mut *mut ::c_char,
5859 + outbuf: *mut *mut c_char,
|
error[E0412]: cannot find type `c_long` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5881:29
|
5881 | pub fn gethostid() -> ::c_long;
| ^^^^^^ not found in the crate root
|
help: consider importing this type alias
|
5966 + use ffi::c_long;
|
help: if you import `c_long`, refer to it directly
|
5881 - pub fn gethostid() -> ::c_long;
5881 + pub fn gethostid() -> c_long;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5883:44
|
5883 | pub fn pthread_getcpuclockid(thread: ::pthread_t, clk_id: *mut ::clockid_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5892:41
|
5892 | pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5892:65
|
5892 | pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_char, len: ::size_t) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5892 | pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_schar, len: ::size_t) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5892 - pub fn pthread_getname_np(thread: ::pthread_t, name: *mut ::c_char, len: ::size_t) -> ::c_int;
5892 + pub fn pthread_getname_np(thread: ::pthread_t, name: *mut c_char, len: ::size_t) -> ::c_int;
|
error[E0412]: cannot find type `pthread_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5893:41
|
5893 | pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int;
| ^^^^^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5893:67
|
5893 | pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5893 | pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_schar) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5893 - pub fn pthread_setname_np(thread: ::pthread_t, name: *const ::c_char) -> ::c_int;
5893 + pub fn pthread_setname_np(thread: ::pthread_t, name: *const c_char) -> ::c_int;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5896:27
|
5896 | argv: *const *mut c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5896 | argv: *const *mut char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5897:27
|
5897 | optstring: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5897 | optstring: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5913:55
|
5913 | pub fn klogctl(syslog_type: ::c_int, bufp: *mut ::c_char, len: ::c_int) -> ::c_int;
| ^^^^^^
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
|
5913 | pub fn klogctl(syslog_type: ::c_int, bufp: *mut ::c_schar, len: ::c_int) -> ::c_int;
| ~~~~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
help: if you import `c_char`, refer to it directly
|
5913 - pub fn klogctl(syslog_type: ::c_int, bufp: *mut ::c_char, len: ::c_int) -> ::c_int;
5913 + pub fn klogctl(syslog_type: ::c_int, bufp: *mut c_char, len: ::c_int) -> ::c_int;
|
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5915:42
|
5915 | pub fn ioctl(fd: ::c_int, request: ::Ioctl, ...) -> ::c_int;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5931:45
|
5931 | pub fn fopen64(filename: *const c_char, mode: *const c_char) -> *mut ::FILE;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5931 | pub fn fopen64(filename: *const char, mode: *const c_char) -> *mut ::FILE;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5931:66
|
5931 | pub fn fopen64(filename: *const c_char, mode: *const c_char) -> *mut ::FILE;
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5931 | pub fn fopen64(filename: *const c_char, mode: *const char) -> *mut ::FILE;
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5933:34
|
5933 | filename: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5933 | filename: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_char` in this scope
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5934:30
|
5934 | mode: *const c_char,
| ^^^^^^
|
help: a builtin type with a similar name exists
|
5934 | mode: *const char,
| ~~~~
help: consider importing this type alias
|
5966 + use ffi::c_char;
|
error[E0412]: cannot find type `c_ulong` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:133:21
|
133 | pub const TCGETS: ::Ioctl = 0x5401;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:134:21
|
134 | pub const TCSETS: ::Ioctl = 0x5402;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:135:22
|
135 | pub const TCSETSW: ::Ioctl = 0x5403;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:136:22
|
136 | pub const TCSETSF: ::Ioctl = 0x5404;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:137:21
|
137 | pub const TCGETA: ::Ioctl = 0x5405;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:138:21
|
138 | pub const TCSETA: ::Ioctl = 0x5406;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:139:22
|
139 | pub const TCSETAW: ::Ioctl = 0x5407;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:140:22
|
140 | pub const TCSETAF: ::Ioctl = 0x5408;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:141:21
|
141 | pub const TCSBRK: ::Ioctl = 0x5409;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:142:21
|
142 | pub const TCXONC: ::Ioctl = 0x540A;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:143:21
|
143 | pub const TCFLSH: ::Ioctl = 0x540B;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:144:23
|
144 | pub const TIOCEXCL: ::Ioctl = 0x540C;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:145:23
|
145 | pub const TIOCNXCL: ::Ioctl = 0x540D;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:146:24
|
146 | pub const TIOCSCTTY: ::Ioctl = 0x540E;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:147:24
|
147 | pub const TIOCGPGRP: ::Ioctl = 0x540F;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:148:24
|
148 | pub const TIOCSPGRP: ::Ioctl = 0x5410;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:149:23
|
149 | pub const TIOCOUTQ: ::Ioctl = 0x5411;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:150:22
|
150 | pub const TIOCSTI: ::Ioctl = 0x5412;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:151:25
|
151 | pub const TIOCGWINSZ: ::Ioctl = 0x5413;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:152:25
|
152 | pub const TIOCSWINSZ: ::Ioctl = 0x5414;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:153:23
|
153 | pub const TIOCMGET: ::Ioctl = 0x5415;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:154:23
|
154 | pub const TIOCMBIS: ::Ioctl = 0x5416;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:155:23
|
155 | pub const TIOCMBIC: ::Ioctl = 0x5417;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:156:23
|
156 | pub const TIOCMSET: ::Ioctl = 0x5418;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:157:27
|
157 | pub const TIOCGSOFTCAR: ::Ioctl = 0x5419;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:158:27
|
158 | pub const TIOCSSOFTCAR: ::Ioctl = 0x541A;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:159:23
|
159 | pub const FIONREAD: ::Ioctl = 0x541B;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:160:22
|
160 | pub const TIOCINQ: ::Ioctl = FIONREAD;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:161:24
|
161 | pub const TIOCLINUX: ::Ioctl = 0x541C;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:162:23
|
162 | pub const TIOCCONS: ::Ioctl = 0x541D;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:163:26
|
163 | pub const TIOCGSERIAL: ::Ioctl = 0x541E;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:164:26
|
164 | pub const TIOCSSERIAL: ::Ioctl = 0x541F;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:165:22
|
165 | pub const TIOCPKT: ::Ioctl = 0x5420;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:166:22
|
166 | pub const FIONBIO: ::Ioctl = 0x5421;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:167:24
|
167 | pub const TIOCNOTTY: ::Ioctl = 0x5422;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:168:23
|
168 | pub const TIOCSETD: ::Ioctl = 0x5423;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:169:23
|
169 | pub const TIOCGETD: ::Ioctl = 0x5424;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:170:22
|
170 | pub const TCSBRKP: ::Ioctl = 0x5425;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:171:23
|
171 | pub const TIOCSBRK: ::Ioctl = 0x5427;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:172:23
|
172 | pub const TIOCCBRK: ::Ioctl = 0x5428;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:173:23
|
173 | pub const TIOCGSID: ::Ioctl = 0x5429;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:174:22
|
174 | pub const TCGETS2: ::Ioctl = 0x802c542a;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:175:22
|
175 | pub const TCSETS2: ::Ioctl = 0x402c542b;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:176:23
|
176 | pub const TCSETSW2: ::Ioctl = 0x402c542c;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:177:23
|
177 | pub const TCSETSF2: ::Ioctl = 0x402c542d;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:178:25
|
178 | pub const TIOCGRS485: ::Ioctl = 0x542E;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:179:25
|
179 | pub const TIOCSRS485: ::Ioctl = 0x542F;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:180:23
|
180 | pub const TIOCGPTN: ::Ioctl = 0x80045430;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:181:25
|
181 | pub const TIOCSPTLCK: ::Ioctl = 0x40045431;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:182:23
|
182 | pub const TIOCGDEV: ::Ioctl = 0x80045432;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:183:21
|
183 | pub const TCGETX: ::Ioctl = 0x5432;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:184:21
|
184 | pub const TCSETX: ::Ioctl = 0x5433;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:185:22
|
185 | pub const TCSETXF: ::Ioctl = 0x5434;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:186:22
|
186 | pub const TCSETXW: ::Ioctl = 0x5435;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:187:22
|
187 | pub const TIOCSIG: ::Ioctl = 0x40045436;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:188:26
|
188 | pub const TIOCVHANGUP: ::Ioctl = 0x5437;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:189:23
|
189 | pub const TIOCGPKT: ::Ioctl = 0x80045438;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:190:25
|
190 | pub const TIOCGPTLCK: ::Ioctl = 0x80045439;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:191:24
|
191 | pub const TIOCGEXCL: ::Ioctl = 0x80045440;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:192:26
|
192 | pub const TIOCGPTPEER: ::Ioctl = 0x5441;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:195:23
|
195 | pub const FIONCLEX: ::Ioctl = 0x5450;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:196:22
|
196 | pub const FIOCLEX: ::Ioctl = 0x5451;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:197:23
|
197 | pub const FIOASYNC: ::Ioctl = 0x5452;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:198:28
|
198 | pub const TIOCSERCONFIG: ::Ioctl = 0x5453;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:199:27
|
199 | pub const TIOCSERGWILD: ::Ioctl = 0x5454;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:200:27
|
200 | pub const TIOCSERSWILD: ::Ioctl = 0x5455;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:201:29
|
201 | pub const TIOCGLCKTRMIOS: ::Ioctl = 0x5456;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:202:29
|
202 | pub const TIOCSLCKTRMIOS: ::Ioctl = 0x5457;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:203:29
|
203 | pub const TIOCSERGSTRUCT: ::Ioctl = 0x5458;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:204:28
|
204 | pub const TIOCSERGETLSR: ::Ioctl = 0x5459;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:205:30
|
205 | pub const TIOCSERGETMULTI: ::Ioctl = 0x545A;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:206:30
|
206 | pub const TIOCSERSETMULTI: ::Ioctl = 0x545B;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:207:25
|
207 | pub const TIOCMIWAIT: ::Ioctl = 0x545C;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:208:26
|
208 | pub const TIOCGICOUNT: ::Ioctl = 0x545D;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:209:23
|
209 | pub const BLKIOMIN: ::Ioctl = 0x1278;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:210:23
|
210 | pub const BLKIOOPT: ::Ioctl = 0x1279;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:211:24
|
211 | pub const BLKSSZGET: ::Ioctl = 0x1268;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:212:25
|
212 | pub const BLKPBSZGET: ::Ioctl = 0x127B;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:214:27
|
214 | pub const TUNSETNOCSUM: ::Ioctl = 0x400454c8;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:215:26
|
215 | pub const TUNSETDEBUG: ::Ioctl = 0x400454c9;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:216:24
|
216 | pub const TUNSETIFF: ::Ioctl = 0x400454ca;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:217:28
|
217 | pub const TUNSETPERSIST: ::Ioctl = 0x400454cb;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:218:26
|
218 | pub const TUNSETOWNER: ::Ioctl = 0x400454cc;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:219:25
|
219 | pub const TUNSETLINK: ::Ioctl = 0x400454cd;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:220:26
|
220 | pub const TUNSETGROUP: ::Ioctl = 0x400454ce;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:221:29
|
221 | pub const TUNGETFEATURES: ::Ioctl = 0x800454cf;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:222:28
|
222 | pub const TUNSETOFFLOAD: ::Ioctl = 0x400454d0;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:223:29
|
223 | pub const TUNSETTXFILTER: ::Ioctl = 0x400454d1;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:224:24
|
224 | pub const TUNGETIFF: ::Ioctl = 0x800454d2;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:225:27
|
225 | pub const TUNGETSNDBUF: ::Ioctl = 0x800454d3;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:226:27
|
226 | pub const TUNSETSNDBUF: ::Ioctl = 0x400454d4;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:227:30
|
227 | pub const TUNGETVNETHDRSZ: ::Ioctl = 0x800454d7;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:228:30
|
228 | pub const TUNSETVNETHDRSZ: ::Ioctl = 0x400454d8;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:229:26
|
229 | pub const TUNSETQUEUE: ::Ioctl = 0x400454d9;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:230:28
|
230 | pub const TUNSETIFINDEX: ::Ioctl = 0x400454da;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:231:27
|
231 | pub const TUNSETVNETLE: ::Ioctl = 0x400454dc;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:232:27
|
232 | pub const TUNGETVNETLE: ::Ioctl = 0x800454dd;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:237:27
|
237 | pub const TUNSETVNETBE: ::Ioctl = 0x400454de;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:238:27
|
238 | pub const TUNGETVNETBE: ::Ioctl = 0x800454df;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:239:33
|
239 | pub const TUNSETSTEERINGEBPF: ::Ioctl = 0x800454e0;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:240:31
|
240 | pub const TUNSETFILTEREBPF: ::Ioctl = 0x800454e1;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:266:38
|
266 | pub const FS_IOC_GETFLAGS: ::Ioctl = 0x80086601;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:267:38
|
267 | pub const FS_IOC_SETFLAGS: ::Ioctl = 0x40086602;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:268:40
|
268 | pub const FS_IOC_GETVERSION: ::Ioctl = 0x80087601;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:269:40
|
269 | pub const FS_IOC_SETVERSION: ::Ioctl = 0x40087602;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:270:40
|
270 | pub const FS_IOC32_GETFLAGS: ::Ioctl = 0x80046601;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:271:40
|
271 | pub const FS_IOC32_SETFLAGS: ::Ioctl = 0x40046602;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:272:42
|
272 | pub const FS_IOC32_GETVERSION: ::Ioctl = 0x80047601;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:273:42
|
273 | pub const FS_IOC32_SETVERSION: ::Ioctl = 0x40047602;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:274:38
|
274 | pub const TUNATTACHFILTER: ::Ioctl = 0x401054d5;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:275:38
|
275 | pub const TUNDETACHFILTER: ::Ioctl = 0x401054d6;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:276:35
|
276 | pub const TUNGETFILTER: ::Ioctl = 0x801054db;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `Ioctl` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:285:31
|
285 | pub const FIOQSIZE: ::Ioctl = 0x5460;
| ^^^^^ not found in the crate root
error[E0412]: cannot find type `rlim_t` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/arch/generic/mod.rs:367:28
|
367 | pub const RLIM_INFINITY: ::rlim_t = !0;
| ^^^^^^ help: a struct with a similar name exists: `rlimit`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/macros.rs:77:13
|
77 | pub struct $i { $($field)* }
| ------------- similarly named struct `rlimit` defined here
error[E0425]: cannot find value `__SIZEOF_PTHREAD_MUTEXATTR_T` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:30:30
|
30 | size: [u8; ::__SIZEOF_PTHREAD_MUTEXATTR_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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_RWLOCKATTR_T` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:41:30
|
41 | size: [u8; ::__SIZEOF_PTHREAD_RWLOCKATTR_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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_CONDATTR_T` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:47:30
|
47 | size: [u8; ::__SIZEOF_PTHREAD_CONDATTR_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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_BARRIERATTR_T` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:53:30
|
53 | size: [u8; ::__SIZEOF_PTHREAD_BARRIERATTR_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in the crate root
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:62:27
|
62 | pub mask: __u64,
| ^^^^^ not found in this scope
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:69:31
|
69 | pub tp_all: ::__u64,
| ^^^^^ not found in the crate root
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:70:32
|
70 | pub tp_huge: ::__u64,
| ^^^^^ not found in the crate root
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:71:34
|
71 | pub tp_failed: ::__u64,
| ^^^^^ not found in the crate root
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:80:32
|
80 | pub seq_num: ::__u64,
| ^^^^^ not found in the crate root
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:5977:1
|
5977 | 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_MUTEX_T` in the crate root
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:130:30
|
130 | size: [u8; ::__SIZEOF_PTHREAD_MUTEX_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:157:30
|
157 | size: [u8; ::__SIZEOF_PTHREAD_RWLOCK_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/align.rs:185:30
|
185 | size: [u8; ::__SIZEOF_PTHREAD_BARRIER_T],
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: a constant with a similar name exists: `__SIZEOF_PTHREAD_COND_T`
|
::: /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/src/unix/linux_like/linux/mod.rs:2261:1
|
2261 | pub const __SIZEOF_PTHREAD_COND_T: usize = 48;
| ---------------------------------------------- similarly named constant `__SIZEOF_PTHREAD_COND_T` defined here
...
5977 | 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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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
--> /root/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.162/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 1192 previous errors