aboutsummaryrefslogtreecommitdiff
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2025-07-29 11:30:26 -1000
committerRichard Henderson <richard.henderson@linaro.org>2025-08-30 07:04:04 +1000
commit5dcc0b62059e2330f2746fa691ac6791e9a14cc3 (patch)
tree8f81c5e6177cc57a7e209bd715141e56a0040b3b /linux-user
parenteb727cc45a352ff259c4c2d85456f0412e738d43 (diff)
downloadqemu-5dcc0b62059e2330f2746fa691ac6791e9a14cc3.zip
qemu-5dcc0b62059e2330f2746fa691ac6791e9a14cc3.tar.gz
qemu-5dcc0b62059e2330f2746fa691ac6791e9a14cc3.tar.bz2
linux-user: Remove ELIBBAD from elfload.c
The last use of this fallback was removed in 8e62a71738bc. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/elfload.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index aa0eed6..c032692 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -110,11 +110,6 @@ int info_is_fdpic(struct image_info *info)
#define MAP_DENYWRITE 0
#endif
-/* should probably go in elf.h */
-#ifndef ELIBBAD
-#define ELIBBAD 80
-#endif
-
#if TARGET_BIG_ENDIAN
#define ELF_DATA ELFDATA2MSB
#else