mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
5 lines
119 B
Rust
5 lines
119 B
Rust
pub const NAME_MAX: usize = {
|
|
#[cfg(target_os = "linux")] { 1024 }
|
|
#[cfg(target_os = "freebsd")] { 255 }
|
|
};
|