/* skip a bunch so we don't run into any of sun's numbers */
M_386 = 100,
M_29K = 101,
+ /* HP/BSD formats */
+ M_HP200 = 200, /* hp200 (68010) BSD binary */
+ M_HP300 = 300, /* hp300 (68020+68881) BSD binary */
+ M_HPUX23 = 0x020C, /* hp200/300 HPUX binary */
};
#define N_MAGIC(exec) ((exec).a_info & 0xffff)
#define VAX_BSD_SYS 14
#define TAHOE_BSD_SYS 15
#define RTBSD_SYS 16 /* IBM RT/PC running bsd Unix */
+#define HP300BSD_SYS 17
#include <ansidecl.h>
#include <sys/h-rtbsd.h>
#endif
+#if HOST_SYS == HP300BSD_SYS
+#include <sys/h-hp300bsd.h>
+#endif
+
#endif