| author | |
| committer | |
| log | bc11528b8b7c327c0f6f5a3c97ef45e2a57181cd |
| tree | fef0ef4ecc98d0ea49d8775365ce62633adf8b3d |
| parent | 830bc41b1f71d5366037f3944d35618d8ca46e51 |
1 files changed, 2 insertions(+), 1 deletions(-)
lib/std/c/openbsd.zig+2-1| ... | ... | @@ -28,9 +28,10 @@ pub const pthread_cond_t = extern struct { |
| 28 | 28 | pub const pthread_spinlock_t = extern struct { |
| 29 | 29 | inner: ?*c_void = null, |
| 30 | 30 | }; |
| 31 | ||
| 32 | 31 | pub const pthread_attr_t = extern struct { |
| 33 | 32 | inner: ?*c_void = null, |
| 34 | 33 | }; |
| 35 | 34 | |
| 35 | pub const sem_t = ?*opaque {}; | |
| 36 | ||
| 36 | 37 | pub extern "c" fn posix_memalign(memptr: *?*c_void, alignment: usize, size: usize) c_int; |