summaryrefslogtreecommitdiff
path: root/sys/arch/zaurus
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2013-10-17 08:02:22 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2013-10-17 08:02:22 +0000
commit1c86921d81610e1ef2eb9efef0f9f1a890d366d1 (patch)
treea9ffc9257c80a7b70ebe3bb5f77753b490df0c8a /sys/arch/zaurus
parent35ebe67b708457ec2cf2541a8d67f5698c58bee9 (diff)
Remove support for a.out and ecoff. We only do elf now.
ok miod
Diffstat (limited to 'sys/arch/zaurus')
-rw-r--r--sys/arch/zaurus/stand/zboot/loadfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/zaurus/stand/zboot/loadfile.c b/sys/arch/zaurus/stand/zboot/loadfile.c
index fd9ff324526..d2ae4fbe155 100644
--- a/sys/arch/zaurus/stand/zboot/loadfile.c
+++ b/sys/arch/zaurus/stand/zboot/loadfile.c
@@ -1,5 +1,5 @@
/* $NetBSD: loadfile.c,v 1.10 2000/12/03 02:53:04 tsutsui Exp $ */
-/* $OpenBSD: loadfile.c,v 1.4 2008/06/26 05:42:14 ray Exp $ */
+/* $OpenBSD: loadfile.c,v 1.5 2013/10/17 08:02:18 deraadt Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@ static int coff_exec(int, struct ecoff_exechdr *, u_long *, int);
static int elf_exec(int, Elf_Ehdr *, u_long *, int);
#endif
#ifdef BOOT_AOUT
-#include <sys/exec_aout.h>
+#include <sys/exec.h>
static int aout_exec(int, struct exec *, u_long *, int);
#endif
#ifdef BOOT_ZBOOT