diff options
author | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2025-02-28 16:52:25 +0000 |
---|---|---|
committer | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2025-02-28 16:55:18 +0000 |
commit | e5893e6349541d871e8a25120bca014551d13ff5 (patch) | |
tree | 37bddfd525c777b29f40b06faee20a8ea5478706 /sysdeps/unix/sysv/linux/s390/sysconf.c | |
parent | c0f380c465915faf30dbd10acccdf8b1affda083 (diff) | |
download | glibc-e5893e6349541d871e8a25120bca014551d13ff5.zip glibc-e5893e6349541d871e8a25120bca014551d13ff5.tar.gz glibc-e5893e6349541d871e8a25120bca014551d13ff5.tar.bz2 |
Remove unused dl-procinfo.h
Remove unused _dl_hwcap_string defines. As a result many dl-procinfo.h headers
can be removed. This also removes target specific _dl_procinfo implementations
which only printed HWCAP strings using dl_hwcap_string.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390/sysconf.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/sysconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/sysconf.c b/sysdeps/unix/sysv/linux/s390/sysconf.c index e683a9a..8386523 100644 --- a/sysdeps/unix/sysv/linux/s390/sysconf.c +++ b/sysdeps/unix/sysv/linux/s390/sysconf.c @@ -17,8 +17,9 @@ <https://www.gnu.org/licenses/>. */ #include <unistd.h> -#include <dl-procinfo.h> #include <cpu-features.h> +#include <ldsodefs.h> +#include <sys/auxv.h> static long int linux_sysconf (int name); |