aboutsummaryrefslogtreecommitdiff
path: root/libc/src/unix/notbsd/linux/s390x/align.rs
blob: 21e21907d4a70f03de850a8d11f4c093aab1d622 (plain)
1
2
3
4
5
6
7
8
9
10
s! {
    // FIXME this is actually a union
    #[cfg_attr(target_pointer_width = "32",
               repr(align(4)))]
    #[cfg_attr(target_pointer_width = "64",
               repr(align(8)))]
    pub struct sem_t {
        __size: [::c_char; 32],
    }
}