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");...@@ -2,6 +2,10 @@ const std = @import("std");
2const builtin = @import("builtin");2const builtin = @import("builtin");
3const linux = std.os.linux;3const linux = std.os.linux;
44
5comptime {
6 std.debug.assert(builtin.target.os.tag == .linux);
7}
8
5pub const errno = struct {9pub const errno = struct {
6 pub const Error = error{10 pub const Error = error{
7 Unexpected,11 Unexpected,