mirror of
https://github.com/ziglang/zig.git
synced 2024-11-28 16:12:33 +00:00
7 lines
149 B
Zig
7 lines
149 B
Zig
|
pub const pthread_mutex_t = extern struct {
|
||
|
inner: ?*c_void = null,
|
||
|
};
|
||
|
pub const pthread_cond_t = extern struct {
|
||
|
inner: ?*c_void = null,
|
||
|
};
|