diff options
author | Rich Felker <dalias@aerifal.cx> | 2016-07-03 16:19:28 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-07-03 16:19:28 -0400 |
commit | ee3f0c551669ca1c61abac0888f93a27b0b17856 (patch) | |
tree | 265179f58812804155d431018cb7453592e78228 /arch/x32/bits | |
parent | 3c3b09980d792ea8393f0a3865735b2ff5ecc765 (diff) | |
download | musl-ee3f0c551669ca1c61abac0888f93a27b0b17856.tar.gz |
make brace placement in public header typedef'd structs consistent
commit befa5866ee30d09c0c96e88af2eabff5911342ea performed this change
for struct definitions that did not also involve typedef, but omitted
the latter.
Diffstat (limited to 'arch/x32/bits')
-rw-r--r-- | arch/x32/bits/user.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x32/bits/user.h b/arch/x32/bits/user.h index a6edcd1a..471bb19d 100644 --- a/arch/x32/bits/user.h +++ b/arch/x32/bits/user.h @@ -1,8 +1,7 @@ #undef __WORDSIZE #define __WORDSIZE 64 -typedef struct user_fpregs_struct -{ +typedef struct user_fpregs_struct { uint16_t cwd, swd, ftw, fop; uint64_t rip, rdp; uint32_t mxcsr, mxcr_mask; |