diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-17 08:02:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-10-17 08:02:22 +0000 |
commit | 1c86921d81610e1ef2eb9efef0f9f1a890d366d1 (patch) | |
tree | a9ffc9257c80a7b70ebe3bb5f77753b490df0c8a /sys/arch/zaurus | |
parent | 35ebe67b708457ec2cf2541a8d67f5698c58bee9 (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.c | 4 |
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 |