Skip to content

Commit 30b9bfa

Browse files
committed
chore: wip
1 parent 30c315d commit 30b9bfa

1 file changed

Lines changed: 18 additions & 18 deletions

File tree

  • src/unix/bsd/freebsdlike/freebsd

src/unix/bsd/freebsdlike/freebsd/mod.rs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3632,58 +3632,58 @@ pub const _POSIX_PIPE_BUF: c_int = 512;
36323632
pub const _POSIX_SSIZE_MAX: c_int = 32767;
36333633
pub const _POSIX_STREAM_MAX: c_int = 8;
36343634

3635+
/// Max ibase/obase values in bc(1).
3636+
///
36353637
/// This symbol is prone to change across releases upstream.
36363638
/// See the [usage guidelines](crate#usage-guidelines) for details.
3637-
///
3638-
/// Max ibase/obase values in bc(1).
36393639
pub const BC_BASE_MAX: c_int = 99;
36403640

3641+
/// Max array elements in bc(1).
3642+
///
36413643
/// This symbol is prone to change across releases upstream.
36423644
/// See the [usage guidelines](crate#usage-guidelines) for details.
3643-
///
3644-
/// Max array elements in bc(1).
36453645
pub const BC_DIM_MAX: c_int = 2048;
36463646

3647+
/// Max scale value in bc(1).
3648+
///
36473649
/// This symbol is prone to change across releases upstream.
36483650
/// See the [usage guidelines](crate#usage-guidelines) for details.
3649-
///
3650-
/// Max scale value in bc(1).
36513651
pub const BC_SCALE_MAX: c_int = 99;
36523652

3653+
/// Max const string length in bc(1).
3654+
///
36533655
/// This symbol is prone to change across releases upstream.
36543656
/// See the [usage guidelines](crate#usage-guidelines) for details.
3655-
///
3656-
/// Max const string length in bc(1).
36573657
pub const BC_STRING_MAX: c_int = 1000;
36583658

3659+
/// Max character class name size.
3660+
///
36593661
/// This symbol is prone to change across releases upstream.
36603662
/// See the [usage guidelines](crate#usage-guidelines) for details.
3661-
///
3662-
/// Max character class name size.
36633663
pub const CHARCLASS_NAME_MAX: c_int = 14;
36643664

3665+
/// Max weights for order keyword.
3666+
///
36653667
/// This symbol is prone to change across releases upstream.
36663668
/// See the [usage guidelines](crate#usage-guidelines) for details.
3667-
///
3668-
/// Max weights for order keyword.
36693669
pub const COLL_WEIGHTS_MAX: c_int = 10;
36703670

3671+
/// Max expressions nested in expr(1).
3672+
///
36713673
/// This symbol is prone to change across releases upstream.
36723674
/// See the [usage guidelines](crate#usage-guidelines) for details.
3673-
///
3674-
/// Max expressions nested in expr(1).
36753675
pub const EXPR_NEST_MAX: c_int = 32;
36763676

3677+
/// Max bytes in an input line.
3678+
///
36773679
/// This symbol is prone to change across releases upstream.
36783680
/// See the [usage guidelines](crate#usage-guidelines) for details.
3679-
///
3680-
/// Max bytes in an input line.
36813681
pub const LINE_MAX: c_int = 2048;
36823682

3683+
/// Max RE's in interval notation.
3684+
///
36833685
/// This symbol is prone to change across releases upstream.
36843686
/// See the [usage guidelines](crate#usage-guidelines) for details.
3685-
///
3686-
/// Max RE's in interval notation.
36873687
pub const RE_DUP_MAX: c_int = 255;
36883688

36893689
pub const _POSIX2_BC_BASE_MAX: c_int = 99;

0 commit comments

Comments
 (0)