std: rename module for clarity

This commit is contained in:
joboet 2024-06-17 15:59:42 +02:00
parent 35f050b8da
commit 32f9b8bf76
No known key found for this signature in database
GPG Key ID: 704E0149B0194B3C
2 changed files with 2 additions and 2 deletions

View File

@ -59,9 +59,9 @@ pub(crate) mod destructors {
target_os = "netbsd", target_os = "netbsd",
target_os = "dragonfly" target_os = "dragonfly"
))] { ))] {
mod linux; mod linux_like;
mod list; mod list;
pub(super) use linux::register; pub(super) use linux_like::register;
pub(super) use list::run; pub(super) use list::run;
} else { } else {
mod list; mod list;