fix __WORDSIZE on x32 sys/user.h

sys/reg.h already had it right as 32, to which it was explicitly
changed when commit 664cd34192 derived
x32 from x86_64. but the copy exposed in sys/user.h was missed.
This commit is contained in:
Rich Felker 2022-03-08 17:21:49 -05:00
parent bdb5454065
commit 760f5d7efe
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#undef __WORDSIZE
#define __WORDSIZE 64
#define __WORDSIZE 32
typedef struct user_fpregs_struct {
uint16_t cwd, swd, ftw, fop;