diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-08-17 08:05:55 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-08-17 08:05:55 +0000 |
| commit | e00c264242e9e65af2d0cd255a98eb8b48f53caf (patch) | |
| tree | 29eaea7e66fb48d8b5ddf391c1d37600fd6382fd | |
| parent | e99a8ba0c44757d48fdc3a19c2a4656052b416d7 (diff) | |
Notes
| -rw-r--r-- | sys/alpha/include/elf.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/alpha/include/elf.h b/sys/alpha/include/elf.h index 2af443e46c2d..216bead11269 100644 --- a/sys/alpha/include/elf.h +++ b/sys/alpha/include/elf.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: elf.h,v 1.2 1998/06/10 10:54:57 dfr Exp $ + * $Id: elf.h,v 1.3 1998/06/28 00:50:35 dfr Exp $ */ #ifndef _MACHINE_ELF_H_ @@ -35,6 +35,9 @@ #include <sys/elf64.h> /* Definitions common to all 64 bit architectures. */ +#define __ELF_WORD_SIZE 64 /* Used by <sys/elf_generic.h> */ +#include <sys/elf_generic.h> + #define ELF_MACHINE_OK(x) ((x) == EM_ALPHA) /* @@ -53,6 +56,8 @@ typedef struct { /* Auxiliary vector entry on initial stack */ } a_un; } Elf64_Auxinfo; +__ElfType(Auxinfo); + /* Values for a_type. */ #define AT_NULL 0 /* Terminates the vector. */ #define AT_IGNORE 1 /* Ignored entry. */ |
