authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-12 21:58:37-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-02-12 21:58:37-07:00
logce3bd515973c45ef755da04bc83585b7ce6b87b8
treeadd529c48653e4b4525fd2fe30e0ce2503c3d703
parente1ab57337fc5ee5f420602340e082af3121c594c

std.os.termios: move it to be with the group


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os.zig+1-1
...@@ -173,7 +173,6 @@ pub const sigset_t = system.sigset_t;...@@ -173,7 +173,6 @@ pub const sigset_t = system.sigset_t;
173pub const sockaddr = system.sockaddr;173pub const sockaddr = system.sockaddr;
174pub const socklen_t = system.socklen_t;174pub const socklen_t = system.socklen_t;
175pub const stack_t = system.stack_t;175pub const stack_t = system.stack_t;
176pub const termios = system.termios;
177pub const time_t = system.time_t;176pub const time_t = system.time_t;
178pub const timespec = system.timespec;177pub const timespec = system.timespec;
179pub const timestamp_t = system.timestamp_t;178pub const timestamp_t = system.timestamp_t;
...@@ -184,6 +183,7 @@ pub const uid_t = system.uid_t;...@@ -184,6 +183,7 @@ pub const uid_t = system.uid_t;
184pub const user_desc = system.user_desc;183pub const user_desc = system.user_desc;
185pub const utsname = system.utsname;184pub const utsname = system.utsname;
186185
186pub const termios = system.termios;
187pub const CSIZE = system.CSIZE;187pub const CSIZE = system.CSIZE;
188pub const NCCS = system.NCCS;188pub const NCCS = system.NCCS;
189pub const speed_t = system.speed_t;189pub const speed_t = system.speed_t;