We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285984a commit d8a765bCopy full SHA for d8a765b
1 file changed
libc-test/tests/quick.rs
@@ -3,7 +3,7 @@
3
#[test]
4
fn test() {
5
#[cfg(all(target_arch = "x86", target_env = "gnu"))]
6
- assert_eq!(size_of::<libc::time_t>(), 32);
+ assert_eq!(size_of::<libc::time_t>(), 4);
7
#[cfg(not(all(target_arch = "x86", target_env = "gnu")))]
8
- assert_eq!(size_of::<libc::time_t>(), 64);
+ assert_eq!(size_of::<libc::time_t>(), 8);
9
}
0 commit comments