ecb78adf80
exactly as it was on Sun, 23 May 2004 04:40:32 +0000. Corresponds to git commit 242eda977694c559d7d21626702034c13d745597.
20 lines
353 B
C
20 lines
353 B
C
#include "as.h"
|
|
#include "emul.h"
|
|
|
|
static const char *criself_bfd_name PARAMS ((void));
|
|
|
|
static const char *
|
|
criself_bfd_name ()
|
|
{
|
|
abort ();
|
|
return NULL;
|
|
}
|
|
|
|
#define emul_bfd_name criself_bfd_name
|
|
#define emul_format &elf_format_ops
|
|
|
|
#define emul_name "criself"
|
|
#define emul_struct_name criself
|
|
#define emul_default_endian 0
|
|
#include "emul-target.h"
|