1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

uucore: remove commented out imports

This commit is contained in:
Daniel Hofstetter 2023-04-09 14:53:15 +02:00
parent 213bbb8e54
commit dfea103bc4

View file

@ -42,13 +42,10 @@ use std::ptr;
use std::sync::{Mutex, MutexGuard}; use std::sync::{Mutex, MutexGuard};
pub use self::ut::*; pub use self::ut::*;
use libc::utmpx;
// pub use libc::getutxid;
// pub use libc::getutxline;
// pub use libc::pututxline;
pub use libc::endutxent; pub use libc::endutxent;
pub use libc::getutxent; pub use libc::getutxent;
pub use libc::setutxent; pub use libc::setutxent;
use libc::utmpx;
#[cfg(any(target_vendor = "apple", target_os = "linux", target_os = "netbsd"))] #[cfg(any(target_vendor = "apple", target_os = "linux", target_os = "netbsd"))]
pub use libc::utmpxname; pub use libc::utmpxname;