diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-24 04:14:30 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-24 04:14:30 +0000 |
commit | 5c86faa2e23a489b53088ee71f20e08f5fac561c (patch) | |
tree | 279d75dc9bea80d34dee86b18879edc264ab5564 /libc/sysdeps/linux/arm/bits/elfclass.h | |
parent | 54069d7c6d00a81a63eefde9e994ba284e67f175 (diff) |
These are needed for arm ld.so support (not at all working yet...)
-Erik
Diffstat (limited to 'libc/sysdeps/linux/arm/bits/elfclass.h')
-rw-r--r-- | libc/sysdeps/linux/arm/bits/elfclass.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/arm/bits/elfclass.h b/libc/sysdeps/linux/arm/bits/elfclass.h new file mode 100644 index 000000000..180227d9e --- /dev/null +++ b/libc/sysdeps/linux/arm/bits/elfclass.h @@ -0,0 +1,14 @@ +/* This file specifies the native word size of the machine, which indicates + the ELF file class used for executables and shared objects on this + machine. */ + +#ifndef _LINK_H +# error "Never use <bits/elfclass.h> directly; include <link.h> instead." +#endif + +#include <bits/wordsize.h> + +#define __ELF_NATIVE_CLASS __WORDSIZE + +/* The entries in the .hash table always have a size of 32 bits. */ +typedef uint32_t Elf_Symndx; |