about summary refs log tree commit diff
path: root/arch
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2024-05-07 09:11:10 -0400
committerRich Felker <dalias@aerifal.cx>2024-05-07 09:11:10 -0400
commit7019fbe103165b9b26a9391d5ecd4c7fcb6f3ec9 (patch)
tree2608a8d167e1453b8145b527ad66f90a6d0a5c2c /arch
parente709a6f07ade208ba513f9225222336f30c304b0 (diff)
downloadmusl-7019fbe103165b9b26a9391d5ecd4c7fcb6f3ec9.tar.gz
musl-7019fbe103165b9b26a9391d5ecd4c7fcb6f3ec9.tar.xz
musl-7019fbe103165b9b26a9391d5ecd4c7fcb6f3ec9.zip
sys/user.h: derive __WORDSIZE from __LONG_MAX
previously, only a few archs defined it here. this change makes the
presence consistent across all archs, and reduces the amount of header
duplication (and potential for future inconsistency) between archs.
Diffstat (limited to 'arch')
-rw-r--r--arch/s390x/bits/user.h3
-rw-r--r--arch/sh/bits/user.h3
-rw-r--r--arch/x32/bits/user.h3
-rw-r--r--arch/x86_64/bits/user.h3
4 files changed, 0 insertions, 12 deletions
diff --git a/arch/s390x/bits/user.h b/arch/s390x/bits/user.h
index ff3f0483..47f94f20 100644
--- a/arch/s390x/bits/user.h
+++ b/arch/s390x/bits/user.h
@@ -1,6 +1,3 @@
-#undef __WORDSIZE
-#define __WORDSIZE 64
-
 typedef union {
 	double d;
 	float f;
diff --git a/arch/sh/bits/user.h b/arch/sh/bits/user.h
index 07fe843b..b6ba16ed 100644
--- a/arch/sh/bits/user.h
+++ b/arch/sh/bits/user.h
@@ -1,6 +1,3 @@
-#undef __WORDSIZE
-#define __WORDSIZE 32
-
 #define REG_REG0	 0
 #define REG_REG15	15
 #define REG_PC		16
diff --git a/arch/x32/bits/user.h b/arch/x32/bits/user.h
index eac82a14..b328edf9 100644
--- a/arch/x32/bits/user.h
+++ b/arch/x32/bits/user.h
@@ -1,6 +1,3 @@
-#undef __WORDSIZE
-#define __WORDSIZE 32
-
 typedef struct user_fpregs_struct {
 	uint16_t cwd, swd, ftw, fop;
 	uint64_t rip, rdp;
diff --git a/arch/x86_64/bits/user.h b/arch/x86_64/bits/user.h
index 4073cc06..b328edf9 100644
--- a/arch/x86_64/bits/user.h
+++ b/arch/x86_64/bits/user.h
@@ -1,6 +1,3 @@
-#undef __WORDSIZE
-#define __WORDSIZE 64
-
 typedef struct user_fpregs_struct {
 	uint16_t cwd, swd, ftw, fop;
 	uint64_t rip, rdp;