zig/lib/std/c/hermit.zig

7 lines
163 B
Zig
Raw Normal View History

2019-11-07 22:52:23 -08:00
pub const pthread_mutex_t = extern struct {
2019-12-05 10:20:38 -08:00
inner: usize = ~@as(usize, 0),
2019-11-07 22:52:23 -08:00
};
pub const pthread_cond_t = extern struct {
2019-12-05 10:20:38 -08:00
inner: usize = ~@as(usize, 0),
2019-11-07 22:52:23 -08:00
};