mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 06:14:49 +01:00
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15072 a95241bf-73f2-0310-859d-f6bbb57e9c96
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"
|