diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-09-12 18:56:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-09-12 18:56:23 +0000 |
commit | 8e33c9be8406165bceef333a2d7d2b42b00125ac (patch) | |
tree | 623d9836a270af0dca681c202d80baa401cfb814 /elf | |
parent | 65da9563c76080002eb5018b4666220e15c9d70d (diff) | |
download | glibc-8e33c9be8406165bceef333a2d7d2b42b00125ac.tar.gz |
Correct DT_LOOS and DT_HIOS values.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/elf.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 */ |