search for: elf64_st_info

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

Did you mean: elf32_st_info
2005 Jan 06
0
[PATCH] ELF headers
...--- 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_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/sy...