about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-09-12 18:56:23 +0000
committerUlrich Drepper <drepper@redhat.com>2002-09-12 18:56:23 +0000
commit8e33c9be8406165bceef333a2d7d2b42b00125ac (patch)
tree623d9836a270af0dca681c202d80baa401cfb814 /elf
parent65da9563c76080002eb5018b4666220e15c9d70d (diff)
downloadglibc-8e33c9be8406165bceef333a2d7d2b42b00125ac.tar.gz
glibc-8e33c9be8406165bceef333a2d7d2b42b00125ac.tar.xz
glibc-8e33c9be8406165bceef333a2d7d2b42b00125ac.zip
Correct DT_LOOS and DT_HIOS values.
Diffstat (limited to 'elf')
-rw-r--r--elf/elf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/elf.h b/elf/elf.h
index 7ce9165a43..2edf8e081b 100644
--- a/elf/elf.h
+++ b/elf/elf.h
@@ -656,8 +656,8 @@ typedef struct
 #define DT_PREINIT_ARRAY 32		/* Array with addresses of preinit fct*/
 #define DT_PREINIT_ARRAYSZ 33		/* size in bytes of DT_PREINIT_ARRAY */
 #define	DT_NUM		34		/* Number used */
-#define DT_LOOS		0x60000000	/* Start of OS-specific */
-#define DT_HIOS		0x6fffffff	/* End of OS-specific */
+#define DT_LOOS		0x6000000d	/* Start of OS-specific */
+#define DT_HIOS		0x6ffff000	/* End of OS-specific */
 #define DT_LOPROC	0x70000000	/* Start of processor-specific */
 #define DT_HIPROC	0x7fffffff	/* End of processor-specific */
 #define	DT_PROCNUM	DT_MIPS_NUM	/* Most used by any processor */