xref: /aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/libc-0.2.153/src/windows/gnu/align.rs (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 cfg_if! {
2     if #[cfg(target_pointer_width = "64")] {
3         s_no_extra_traits! {
4             #[allow(missing_debug_implementations)]
5             #[repr(align(16))]
6             pub struct max_align_t {
7                 priv_: [f64; 4]
8             }
9         }
10     } else if #[cfg(target_pointer_width = "32")] {
11         s_no_extra_traits! {
12             #[allow(missing_debug_implementations)]
13             #[repr(align(16))]
14             pub struct max_align_t {
15                 priv_: [i64; 6]
16             }
17         }
18     }
19 }
20