mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
uucore: remove unused spell-checker:disable
This commit is contained in:
parent
34da5029df
commit
95b36f2d4f
1 changed files with 3 additions and 3 deletions
|
@ -359,7 +359,7 @@ use libc::c_int;
|
||||||
))]
|
))]
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#[cfg(all(target_vendor = "apple", target_arch = "x86_64"))]
|
#[cfg(all(target_vendor = "apple", target_arch = "x86_64"))]
|
||||||
#[link_name = "getmntinfo$INODE64"] // spell-checker:disable-line
|
#[link_name = "getmntinfo$INODE64"]
|
||||||
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
||||||
|
|
||||||
#[cfg(any(
|
#[cfg(any(
|
||||||
|
@ -367,14 +367,14 @@ extern "C" {
|
||||||
target_os = "openbsd",
|
target_os = "openbsd",
|
||||||
all(target_vendor = "apple", target_arch = "aarch64")
|
all(target_vendor = "apple", target_arch = "aarch64")
|
||||||
))]
|
))]
|
||||||
#[link_name = "getmntinfo"] // spell-checker:disable-line
|
#[link_name = "getmntinfo"]
|
||||||
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
||||||
|
|
||||||
// Rust on FreeBSD uses 11.x ABI for filesystem metadata syscalls.
|
// Rust on FreeBSD uses 11.x ABI for filesystem metadata syscalls.
|
||||||
// Call the right version of the symbol for getmntinfo() result to
|
// Call the right version of the symbol for getmntinfo() result to
|
||||||
// match libc StatFS layout.
|
// match libc StatFS layout.
|
||||||
#[cfg(target_os = "freebsd")]
|
#[cfg(target_os = "freebsd")]
|
||||||
#[link_name = "getmntinfo@FBSD_1.0"] // spell-checker:disable-line
|
#[link_name = "getmntinfo@FBSD_1.0"]
|
||||||
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue