authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-08-24 02:41:50 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-08-24 02:41:50 -07:00
log27014a22ec2b852a8b17387877dc531ed2fe098b
tree7b4089979d7e4abb25dccb19eaa71a0ac430e648
parent820c66ec497dad3123a1d7f9e9c9afbe5254fb27

make these public


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

mod.zig+4-3
......@@ -8,9 +8,10 @@ const syscall3 = sys.syscall3;
88const syscall4 = sys.syscall4;
99const syscall5 = sys.syscall5;
1010const syscall6 = sys.syscall6;
11const pid_t = sys.pid_t;
12const uid_t = sys.uid_t;
13const gid_t = sys.gid_t;
11
12pub const pid_t = sys.pid_t;
13pub const uid_t = sys.uid_t;
14pub const gid_t = sys.gid_t;
1415
1516fn _errno(rc: usize) enum(c_ushort) { ok, _ } {
1617 const signed: isize = @bitCast(rc);