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;
173173pub const sockaddr = system.sockaddr;
174174pub const socklen_t = system.socklen_t;
175175pub const stack_t = system.stack_t;
176pub const termios = system.termios;
177176pub const time_t = system.time_t;
178177pub const timespec = system.timespec;
179178pub const timestamp_t = system.timestamp_t;
......@@ -184,6 +183,7 @@ pub const uid_t = system.uid_t;
184183pub const user_desc = system.user_desc;
185184pub const utsname = system.utsname;
186185
186pub const termios = system.termios;
187187pub const CSIZE = system.CSIZE;
188188pub const NCCS = system.NCCS;
189189pub const speed_t = system.speed_t;