search for: elf64_shalf

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

Did you mean: elf64_half
2005 Jan 06
0
[PATCH] ELF headers
...elfcommon.h> +#define ELF64_ST_BIND(val) ST_BIND (val) +#define ELF64_ST_TYPE(val) ST_TYPE (val) +#define ELF64_ST_INFO(bind, type) ST_INFO ((bind), (type)) + /* ELF standard typedefs (yet more proof that <stdint.h> was way overdue) */ typedef uint16_t Elf64_Half; typedef int16_t Elf64_SHalf; diff -uNr klibc-0.178/include/sys/elfcommon.h klibc-0.178-fogo/include/sys/elfcommon.h --- klibc-0.178/include/sys/elfcommon.h 2004-01-30 14:40:51.000000000 -0700 +++ klibc-0.178-fogo/include/sys/elfcommon.h 2004-09-20 09:21:09.000000000 -0600 @@ -2,6 +2,8 @@ * sys/elfcommon.h */ +#include &...