dragonfly: debitrot std.c

This commit is contained in:
Michael Dusan 2024-03-15 02:28:50 -04:00
parent 5193da3422
commit cf4a2099e1
No known key found for this signature in database
GPG Key ID: ED4C5BA849FA1B74

View File

@ -494,6 +494,12 @@ pub const sockaddr = extern struct {
addr: [16]u8,
scope_id: u32,
};
pub const un = extern struct {
len: u8 = @sizeOf(un),
family: sa_family_t = AF.UNIX,
path: [104]u8,
};
};
pub const Kevent = extern struct {