File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/unix/linux_like/linux/musl/b32/x86 Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -2744,7 +2744,7 @@ fn test_linux(target: &str) {
2744
2744
let x86_32 = target. contains ( "i686" ) ;
2745
2745
let x86_64 = target. contains ( "x86_64" ) ;
2746
2746
let aarch64_musl = aarch64 && musl;
2747
- let gnuabihf = target. contains ( "gnueabihf" ) ;
2747
+ let gnueabihf = target. contains ( "gnueabihf" ) ;
2748
2748
let x86_64_gnux32 = target. contains ( "gnux32" ) && x86_64;
2749
2749
let riscv64 = target. contains ( "riscv64" ) ;
2750
2750
let uclibc = target. contains ( "uclibc" ) ;
Original file line number Diff line number Diff line change @@ -3,6 +3,11 @@ pub type wchar_t = i32;
3
3
pub type greg_t = i32 ;
4
4
5
5
s ! {
6
+ pub struct _libc_fpreg {
7
+ pub significand: [ u16 ; 4 ] ,
8
+ pub exponent: u16 ,
9
+ }
10
+
6
11
pub struct stat {
7
12
pub st_dev: :: dev_t,
8
13
__st_dev_padding: :: c_int,
126
131
pub cssel: :: c_ulong,
127
132
pub dataoff: :: c_ulong,
128
133
pub datasel: :: c_ulong,
129
- pub _st: [ _fpreg ; 8 ] ,
134
+ pub _st: [ _libc_fpreg ; 8 ] ,
130
135
pub status: :: c_ulong,
131
136
}
132
137
You can’t perform that action at this time.
0 commit comments