freebsd-dev/contrib/binutils/gas/config/e-i386coff.c
David E. O'Brien dbbf32dd39 Enlist the FreeBSD-CURRENT users as testers of what is to become Binutils
version 2.12.0.  These bits are taken from the FSF anoncvs repo on
27-January-2002 03:41 PST.
2002-01-27 12:00:11 +00:00

20 lines
359 B
C

#include "as.h"
#include "emul.h"
static const char *i386coff_bfd_name PARAMS ((void));
static const char *
i386coff_bfd_name ()
{
abort ();
return NULL;
}
#define emul_bfd_name i386coff_bfd_name
#define emul_format &coff_format_ops
#define emul_name "i386coff"
#define emul_struct_name i386coff
#define emul_default_endian 0
#include "emul-target.h"