From ce3bd515973c45ef755da04bc83585b7ce6b87b8 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 12 Feb 2024 21:58:37 -0700 Subject: [PATCH] std.os.termios: move it to be with the group --- lib/std/os.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/os.zig b/lib/std/os.zig index 5ed36b353e..fba751d628 100644 --- a/lib/std/os.zig +++ b/lib/std/os.zig @@ -173,7 +173,6 @@ pub const sigset_t = system.sigset_t; pub const sockaddr = system.sockaddr; pub const socklen_t = system.socklen_t; pub const stack_t = system.stack_t; -pub const termios = system.termios; pub const time_t = system.time_t; pub const timespec = system.timespec; pub const timestamp_t = system.timestamp_t; @@ -184,6 +183,7 @@ pub const uid_t = system.uid_t; pub const user_desc = system.user_desc; pub const utsname = system.utsname; +pub const termios = system.termios; pub const CSIZE = system.CSIZE; pub const NCCS = system.NCCS; pub const speed_t = system.speed_t;