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 77838a2 commit 755a3eaCopy full SHA for 755a3ea
src/unix/linux_like/linux/mod.rs
@@ -187,7 +187,12 @@ s! {
187
}
188
189
pub struct input_event {
190
+ #[cfg(not(all(target_env = "gnu", target_pointer_width = "32", not(target_arch = "x86_64"))))]
191
pub time: ::timeval,
192
+ #[cfg(all(target_env = "gnu", target_pointer_width = "32", not(target_arch = "x86_64")))]
193
+ pub __sec: ::c_ulong,
194
195
+ pub __usec: ::c_ulong,
196
pub type_: ::__u16,
197
pub code: ::__u16,
198
pub value: ::__s32,
0 commit comments