search for: _elf_h

Displaying 1 result from an estimated 1 matches for "_elf_h".

Did you mean: __elf__
2005 May 23
3
module-init-tools ported to klibc
...----------- next part -------------- Index: include/elf.h =================================================================== --- efac3d95dbcebf5870fc69dbf652f0225a162961/include/elf.h (mode:100644) +++ 75852caa45a517d4b0df05e6cd364b9ad0a5d98d/include/elf.h (mode:100644) @@ -5,6 +5,13 @@ #ifndef _ELF_H #define _ELF_H +/* copied from GLIBC: Is this a bad (license wise) thing? */ +#define ELF32_ST_TYPE(val) ((val) & 0xf) +#define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val) +#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4) +#define ELF64_...