diff options
author | obrien <obrien@FreeBSD.org> | 2001-02-24 22:23:12 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-02-24 22:23:12 +0000 |
commit | e81db3401fe6b9953c536a47ef9656d24b1fc26c (patch) | |
tree | 372f0463cd072ce4fea85b07e2bf4f61f6223588 | |
parent | 16ff3c2b54063851acd596584eefb8416181cd70 (diff) | |
download | FreeBSD-src-e81db3401fe6b9953c536a47ef9656d24b1fc26c.zip FreeBSD-src-e81db3401fe6b9953c536a47ef9656d24b1fc26c.tar.gz |
Add "ELFOSABI_NONE" which is the symbol used in a copy of the old ELF spec,
as an alias for "ELFOSABI_SYSV".
-rw-r--r-- | sys/sys/elf_common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index e7db690..6579b7d 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -85,6 +85,7 @@ typedef struct { /* Values for e_ident[EI_OSABI]. */ #define ELFOSABI_SYSV 0 /* UNIX System V ABI */ +#define ELFOSABI_NONE ELFOSABI_SYSV /* symbol used in old spec */ #define ELFOSABI_HPUX 1 /* HP-UX operating system */ #define ELFOSABI_NETBSD 2 /* NetBSD */ #define ELFOSABI_LINUX 3 /* GNU/Linux */ |