summaryrefslogtreecommitdiff
path: root/sys/lib/libsa
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-03-30 19:31:45 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-03-30 19:31:45 +0000
commit8ab889efe19d2160b768adfe2b2e818915cfd134 (patch)
tree26fe0ca8c45311964ed29b511ef4b7cfa60b5a48 /sys/lib/libsa
parentd8c08bc5c8a27b13250288737421ac6e6c4c5cac (diff)
Let this compile with BOOT_AOUT defined.
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r--sys/lib/libsa/loadfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/loadfile.c b/sys/lib/libsa/loadfile.c
index 91a058cd37a..026b57334da 100644
--- a/sys/lib/libsa/loadfile.c
+++ b/sys/lib/libsa/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.14 2007/06/26 10:32:50 tom Exp $ */
+/* $OpenBSD: loadfile.c,v 1.15 2008/03/30 19:31:44 miod Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -95,7 +95,7 @@
static int coff_exec(int, struct ecoff_exechdr *, u_long *, int);
#endif
#ifdef BOOT_AOUT
-#include <sys/exec_aout.h>
+/* #include <sys/exec_aout.h> done from <sys/exec.h> above */
static int aout_exec(int, struct exec *, u_long *, int);
#endif