Skip to content

Commit

Permalink
blind and desperate
Browse files Browse the repository at this point in the history
  • Loading branch information
victorpaleologue committed Oct 3, 2022
1 parent cf694c1 commit 1fd4e88
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/unix/linux_like/linux/musl/b32/x86/mod.rs
Expand Up @@ -3,6 +3,11 @@ pub type wchar_t = i32;
pub type greg_t = i32;

s! {
pub struct _libc_fpreg {
pub significand: [u16; 4],
pub exponent: u16,
}

pub struct stat {
pub st_dev: ::dev_t,
__st_dev_padding: ::c_int,
Expand Down Expand Up @@ -126,7 +131,7 @@ s! {
pub cssel: ::c_ulong,
pub dataoff: ::c_ulong,
pub datasel: ::c_ulong,
pub _st: [_fpreg; 8],
pub _st: [_libc_fpreg; 8],
pub status: ::c_ulong,
}

Expand Down

0 comments on commit 1fd4e88

Please sign in to comment.