search for: elf32_shalf

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

Did you mean: elf32_half
2005 Jan 06
0
[PATCH] ELF headers
...elfcommon.h> +#define ELF32_ST_BIND(val) ST_BIND (val) +#define ELF32_ST_TYPE(val) ST_TYPE (val) +#define ELF32_ST_INFO(bind, type) ST_INFO ((bind), (type)) + /* ELF standard typedefs (yet more proof that <stdint.h> was way overdue) */ typedef uint16_t Elf32_Half; typedef int16_t Elf32_SHalf; diff -uNr klibc-0.178/include/sys/elf64.h klibc-0.178-fogo/include/sys/elf64.h --- klibc-0.178/include/sys/elf64.h 2004-01-30 14:40:51.000000000 -0700 +++ klibc-0.178-fogo/include/sys/elf64.h 2004-09-20 09:15:50.000000000 -0600 @@ -7,6 +7,10 @@ #include <sys/elfcommon.h> +#define ELF64_...