We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9e11845 + dd91f3e commit 3a71c42Copy full SHA for 3a71c42
src/liblibc/lib.rs
@@ -3901,6 +3901,8 @@ pub mod consts {
3901
pub const MAP_POPULATE : c_int = 0x08000;
3902
pub const MAP_NONBLOCK : c_int = 0x010000;
3903
pub const MAP_STACK : c_int = 0x020000;
3904
+
3905
+ pub const PATH_MAX: c_int = 4096;
3906
}
3907
#[cfg(any(target_arch = "mips",
3908
target_arch = "mipsel"))]
@@ -3928,6 +3930,8 @@ pub mod consts {
3928
3930
pub const MAP_POPULATE : c_int = 0x010000;
3929
3931
pub const MAP_NONBLOCK : c_int = 0x020000;
3932
pub const MAP_STACK : c_int = 0x040000;
3933
3934
3935
3936
#[cfg(target_os = "linux")]
3937
pub mod sysconf {
0 commit comments