summaryrefslogtreecommitdiff
path: root/usr.sbin/mdsetimage/exec_coff.c
diff options
context:
space:
mode:
authormsaitoh <msaitoh@NetBSD.org>2000-01-07 09:40:33 +0000
committermsaitoh <msaitoh@NetBSD.org>2000-01-07 09:40:33 +0000
commit049ad0d982baa6cb08afa57cdc70ba911c945cd2 (patch)
tree06df8278d400ed59698b6be59662a84d9dcfb80f /usr.sbin/mdsetimage/exec_coff.c
parent1aab1f58f98baa945e7236e0951a38a66867d20a (diff)
machine/exec_coff.h -> sys/exec_coff.h
Diffstat (limited to 'usr.sbin/mdsetimage/exec_coff.c')
-rw-r--r--usr.sbin/mdsetimage/exec_coff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mdsetimage/exec_coff.c b/usr.sbin/mdsetimage/exec_coff.c
index a23e49831c5..c460f615435 100644
--- a/usr.sbin/mdsetimage/exec_coff.c
+++ b/usr.sbin/mdsetimage/exec_coff.c
@@ -1,4 +1,4 @@
-/* $NetBSD: exec_coff.c,v 1.1 1999/09/12 16:08:14 itojun Exp $ */
+/* $NetBSD: exec_coff.c,v 1.2 2000/01/07 09:40:35 msaitoh Exp $ */
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
@@ -32,7 +32,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: exec_coff.c,v 1.1 1999/09/12 16:08:14 itojun Exp $");
+__RCSID("$NetBSD: exec_coff.c,v 1.2 2000/01/07 09:40:35 msaitoh Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -44,7 +44,7 @@ __RCSID("$NetBSD: exec_coff.c,v 1.1 1999/09/12 16:08:14 itojun Exp $");
#include "extern.h"
#if defined(NLIST_COFF)
-#include <machine/exec_coff.h> /* XXX sys/exec_coff.h? */
+#include <sys/exec_coff.h>
#define check(off, size) ((off < 0) || (off + size > mappedsize))
#define BAD do { rv = -1; goto out; } while (0)