authorgravatar for borrelli.gabriel.pr@gmail.comGabriel Borrelli <borrelli.gabriel.pr@gmail.com> 2024-11-15 14:31:50+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-11-16 17:18:07+01:00
logccf8488a1e9bd65f354c1613dc504cf5a685e50e
tree03f02d1a0eff29c5d1254dc2fc1d8b570be82fe3
parentbfcf18c5a7d13d990c6bbda04d6a2cd37038a9ea

Add missing pthread_key_t definition for Darwin


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

lib/std/c.zig+1
...@@ -7028,6 +7028,7 @@ pub const pthread_attr_t = switch (native_os) {...@@ -7028,6 +7028,7 @@ pub const pthread_attr_t = switch (native_os) {
70287028
7029pub const pthread_key_t = switch (native_os) {7029pub const pthread_key_t = switch (native_os) {
7030 .linux, .emscripten => c_uint,7030 .linux, .emscripten => c_uint,
7031 .macos, .ios, .tvos, .watchos, .visionos => c_ulong,
7031 .openbsd, .solaris, .illumos => c_int,7032 .openbsd, .solaris, .illumos => c_int,
7032 else => void,7033 else => void,
7033};7034};