Skip to content

Commit 3e05cf2

Browse files
committed
linux: Add definition for IUCLC
This is defined in termios-c_iflag.h (or termbits.h) and it's shared across all the linux archs, even though it's not POSIX
1 parent d58c1f4 commit 3e05cf2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

libc-test/semver/linux.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1305,6 +1305,7 @@ IP_XFRM_POLICY
13051305
ITIMER_PROF
13061306
ITIMER_REAL
13071307
ITIMER_VIRTUAL
1308+
IUCLC
13081309
IUTF8
13091310
IWEVASSOCREQIE
13101311
IWEVASSOCRESPIE

src/unix/linux_like/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,7 @@ pub const ISTRIP: crate::tcflag_t = 0x00000020;
10981098
pub const INLCR: crate::tcflag_t = 0x00000040;
10991099
pub const IGNCR: crate::tcflag_t = 0x00000080;
11001100
pub const ICRNL: crate::tcflag_t = 0x00000100;
1101+
pub const IUCLC: crate::tcflag_t = 0x00000200;
11011102
pub const IXANY: crate::tcflag_t = 0x00000800;
11021103
pub const IMAXBEL: crate::tcflag_t = 0x00002000;
11031104
pub const OPOST: crate::tcflag_t = 0x1;

0 commit comments

Comments
 (0)