We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25032c2 commit 0403fffCopy full SHA for 0403fff
1 file changed
libc-test/build.rs
@@ -3933,14 +3933,6 @@ fn test_linux(target: &str) {
3933
3934
cfg.rename_struct_field(move |struct_, field| {
3935
match (struct_.ident(), field.ident()) {
3936
- // Our stat *_nsec fields normally don't actually exist but are part
3937
- // of a timeval struct - this is fixed in musl_v1_2_3
3938
- ("stat" | "statfs" | "statvfs" | "stat64" | "statfs64" | "statvfs64", f)
3939
- if !musl_v1_2_3 && f.ends_with("_nsec") =>
3940
- {
3941
- Some(f.replace("e_nsec", ".tv_nsec"))
3942
- }
3943
-
3944
// FIXME(linux): epoll_event.data is actually a union in C, but in Rust
3945
// it is only a u64 because we only expose one field
3946
// http://man7.org/linux/man-pages/man2/epoll_wait.2.html
0 commit comments