authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-12-29 02:46:33 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-12-29 02:46:33 -08:00
logc83d15653230c3a66f2c0652ac6138f6ec6a2f1c
tree95e765941872913e11c27e7dfc8f86efb5513aa3
parent141f366bc6dd4f7f512589a1bd17d1b950e3a985

assert this package is called from linux


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

mod.zig+4
......@@ -2,6 +2,10 @@ const std = @import("std");
22const builtin = @import("builtin");
33const linux = std.os.linux;
44
5comptime {
6 std.debug.assert(builtin.target.os.tag == .linux);
7}
8
59pub const errno = struct {
610 pub const Error = error{
711 Unexpected,