Format limits and sysconf

This commit is contained in:
Jeremy Soller
2025-12-19 11:46:38 -07:00
parent 3b963b2745
commit 0405048890
2 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -67,4 +67,4 @@ pub const CHARCLASS_NAME_MAX: c_long = _POSIX2_CHARCLASS_NAME_MAX;
pub const COLL_WEIGHTS_MAX: c_long = _POSIX2_COLL_WEIGHTS_MAX;
pub const EXPR_NEST_MAX: c_long = _POSIX2_EXPR_NEST_MAX;
pub const LINE_MAX: c_long = _POSIX2_LINE_MAX;
pub const RE_DUP_MAX: c_long = _POSIX2_RE_DUP_MAX;
pub const RE_DUP_MAX: c_long = _POSIX2_RE_DUP_MAX;
+1 -5
View File
@@ -6,11 +6,7 @@ use core::{
};
use crate::{
header::{
errno,
limits::*,
signal,
},
header::{errno, limits::*, signal},
platform,
};