From: nasm-bot f. C. G. <gor...@gm...> - 2017-03-12 08:42:23
|
Commit-ID: 37034f1cc8b6c1b332850a1e3bf4791e849ec22e Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=37034f1cc8b6c1b332850a1e3bf4791e849ec22e Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Wed, 8 Mar 2017 16:44:57 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 12 Mar 2017 11:37:15 +0300 elf: Add EI_ constants Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/elf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/output/elf.h b/output/elf.h index b20d63f..3c976e5 100644 --- a/output/elf.h +++ b/output/elf.h @@ -202,7 +202,8 @@ #define EI_DATA 5 #define EI_VERSION 6 #define EI_OSABI 7 -#define EI_PAD 8 +#define EI_ABIVERSION 8 +#define EI_NINDENT 16 #define ELFMAG0 0x7f /* EI_MAG */ #define ELFMAG1 'E' |