Home | History | Annotate | Line # | Download | only in include
      1 /*	$NetBSD: elf_machdep.h,v 1.5 2002/01/28 22:15:55 thorpej Exp $	*/
      2 
      3 #ifndef _MACHINE_ELF_MACHDEP_H_
      4 #define _MACHINE_ELF_MACHDEP_H_
      5 
      6 #include <m68k/elf_machdep.h>
      7 
      8 /*
      9  * The 68010 can't execute binaries for 68020-and-up.
     10  */
     11 #define	ELF32_EHDR_FLAGS_OK(eh)						\
     12 	(((eh)->e_flags & EF_M68000) != 0)
     13 
     14 #endif
     15