Add termios constant for VDISABLE

_POSIX_VDISABLE is an extension that disables terminal special
characters.

See:
* redox-os/termios!3
* redox-os/base!27
This commit is contained in:
Josh Megnauth
2025-08-11 02:43:25 -04:00
parent f5bc50f104
commit c3c9e3f619
10 changed files with 71 additions and 6 deletions
+1
View File
@@ -6,6 +6,7 @@ pub const O_RDWR: c_int = 0x0002;
pub const O_ACCMODE: c_int = 0x0003;
pub const O_CREAT: c_int = 0x0040;
pub const O_EXCL: c_int = 0x0080;
pub const O_NOCTTY: c_int = 0x0100;
pub const O_TRUNC: c_int = 0x0200;
pub const O_APPEND: c_int = 0x0400;
pub const O_NONBLOCK: c_int = 0x0800;