build: update zig

This commit is contained in:
CJ van den Berg 2024-03-22 11:10:09 +01:00
parent 5c5fa22c68
commit 314b8d4909
7 changed files with 17 additions and 17 deletions

View file

@ -189,7 +189,7 @@ fn deinit(self: *Self) void {
fn listen_sigwinch(self: *Self) tp.result {
if (self.sigwinch_signal) |old| old.deinit();
self.sigwinch_signal = tp.signal.init(std.os.SIG.WINCH, tp.message.fmt(.{"sigwinch"})) catch |e| return tp.exit_error(e);
self.sigwinch_signal = tp.signal.init(std.posix.SIG.WINCH, tp.message.fmt(.{"sigwinch"})) catch |e| return tp.exit_error(e);
}
fn receive(self: *Self, from: tp.pid_ref, m: tp.message) tp.result {
@ -854,7 +854,7 @@ const OSC22_cursor_reply = OSC ++ "22:";
pub fn set_terminal_title(text: []const u8) void {
var writer = std.io.getStdOut().writer();
var buf: [std.os.PATH_MAX]u8 = undefined;
var buf: [std.posix.PATH_MAX]u8 = undefined;
const term_cmd = std.fmt.bufPrint(&buf, OSC0_title ++ "{s}" ++ BEL, .{text}) catch return;
_ = writer.write(term_cmd) catch return;
}