uucore: remove unused spell-checker:disable

This commit is contained in:
Ben Wiederhake 2024-04-30 18:21:24 +02:00
parent 34da5029df
commit 95b36f2d4f

View file

@ -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;
} }