diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-29 03:05:15 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-29 03:05:15 +0000 |
commit | 92383d4847f9886583809f9d430a3411aa6e925c (patch) | |
tree | 8dd61408135e5791358ad10abf3336e19c8c52f9 /sys/arch/mac68k | |
parent | 84caeb3aa64af21636ab0464cce327de7bc4cc78 (diff) |
enable ELF/a.out/ECOFF in machine/exec.h
Diffstat (limited to 'sys/arch/mac68k')
-rw-r--r-- | sys/arch/mac68k/include/exec.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/arch/mac68k/include/exec.h b/sys/arch/mac68k/include/exec.h index b51243ca8fe..a2867f86c67 100644 --- a/sys/arch/mac68k/include/exec.h +++ b/sys/arch/mac68k/include/exec.h @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.h,v 1.3 1996/05/26 18:35:49 briggs Exp $ */ +/* $OpenBSD: exec.h,v 1.4 1996/05/29 03:05:00 deraadt Exp $ */ /* $NetBSD: exec.h,v 1.8 1996/05/05 06:17:40 briggs Exp $ */ /*- @@ -55,4 +55,11 @@ struct relocation_info_mac68k { }; #define relocation_info relocation_info_mac68k +#define ELF_TARG_CLASS ELFCLASS32 +#define ELF_TARG_DATA ELFDATA2MSB +#define ELF_TARG_MACH EM_68K + +#define DO_AOUT /* support a.out */ +#define DO_ELF /* support ELF */ + #endif /* _EXEC_MACHINE_ */ |