blob: e32bf673d140e27b412196ccc9b9554b594e2ea8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
s! {
// FIXME this is actually a union
pub struct sem_t {
#[cfg(target_pointer_width = "32")]
__size: [::c_char; 16],
#[cfg(target_pointer_width = "64")]
__size: [::c_char; 32],
__align: [::c_long; 0],
}
}
|