authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-08-23 18:55:34-07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-08-23 18:55:34-07:00
logdc8ca6c96854b93fe06db5993b7675ab2d9bc0ff
tree0f06c9fa62ed2b260437d29c21e78d1c8da698d3
parent4f2f74423ac954516cbd769f4eda9e09f26addb1
signature Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

move pthread_t to cImport block


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

mod.zig+1-1
......@@ -2852,7 +2852,6 @@ pub const struct_utmpx = opaque {};
28522852pub const wint_t = c_uint;
28532853pub const struct_if_nameindex = opaque {};
28542854pub const struct_lconv = opaque {};
2855pub const pthread_t = *opaque {};
28562855pub const FILE = opaque {};
28572856pub const locale_t = *const opaque {};
28582857pub const nl_catd = *const opaque {};
......@@ -2903,6 +2902,7 @@ pub const struct_tm = extern struct { sec: c_int, min: c_int, hour: c_int, mday:
29032902const impdef = @cImport({
29042903 @cInclude("pthread.h");
29052904});
2905pub const pthread_t = impdef.pthread_t;
29062906pub const pthread_attr_t = impdef.pthread_attr_t;
29072907pub const pthread_mutexattr_t = impdef.pthread_mutexattr_t;
29082908pub const pthread_mutex_t = impdef.pthread_mutex_t;