We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91dc624 commit a334663Copy full SHA for a334663
src/unix/linux_like/linux/mod.rs
@@ -182,7 +182,12 @@ s! {
182
}
183
184
pub struct input_event {
185
+ #[cfg(not(all(target_env = "gnu", target_pointer_width = "32", not(target_arch = "x86_64"))))]
186
pub time: ::timeval,
187
+ #[cfg(all(target_env = "gnu", target_pointer_width = "32", not(target_arch = "x86_64")))]
188
+ pub __sec: ::c_ulong,
189
190
+ pub __usec: ::c_ulong,
191
pub type_: ::__u16,
192
pub code: ::__u16,
193
pub value: ::__s32,
0 commit comments