mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2026-01-19 19:51:09 +00:00
16 lines
284 B
Rust
16 lines
284 B
Rust
extern crate libc;
|
|
extern crate time;
|
|
#[cfg(windows)] extern crate winapi;
|
|
|
|
#[macro_use]
|
|
mod macros;
|
|
|
|
pub mod fs;
|
|
pub mod parse_time;
|
|
|
|
#[cfg(unix)] pub mod c_types;
|
|
#[cfg(unix)] pub mod process;
|
|
#[cfg(unix)] pub mod signals;
|
|
#[cfg(unix)] pub mod utmpx;
|
|
|
|
#[cfg(windows)] pub mod wide;
|