1/*	$NetBSD: elf_machdep.h,v 1.4 2002/01/28 21:52:49 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