summaryrefslogtreecommitdiff
path: root/lib/libkvm
diff options
context:
space:
mode:
authormrg <mrg@NetBSD.org>2008-10-25 23:59:06 +0000
committermrg <mrg@NetBSD.org>2008-10-25 23:59:06 +0000
commit4e9d08ba3dd1fb6b49e4e0764ef7f34ef3a2ea0e (patch)
treeb66d36c0f7615afdd3d644c53d3d27fae9f07119 /lib/libkvm
parent3e7eaeda40d3f6c2cfe85d5a0b3fea4feee3a241 (diff)
use <i386/foo.h> in a few places.
Diffstat (limited to 'lib/libkvm')
-rw-r--r--lib/libkvm/kvm_i386.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libkvm/kvm_i386.c b/lib/libkvm/kvm_i386.c
index 40fc7dbe7cc..aa2bce5caa1 100644
--- a/lib/libkvm/kvm_i386.c
+++ b/lib/libkvm/kvm_i386.c
@@ -1,4 +1,4 @@
-/* $NetBSD: kvm_i386.c,v 1.25 2008/01/15 13:57:42 ad Exp $ */
+/* $NetBSD: kvm_i386.c,v 1.26 2008/10/25 23:59:06 mrg Exp $ */
/*-
* Copyright (c) 1989, 1992, 1993
@@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)kvm_hp300.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: kvm_i386.c,v 1.25 2008/01/15 13:57:42 ad Exp $");
+__RCSID("$NetBSD: kvm_i386.c,v 1.26 2008/10/25 23:59:06 mrg Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -50,7 +50,7 @@ __RCSID("$NetBSD: kvm_i386.c,v 1.25 2008/01/15 13:57:42 ad Exp $");
#include <sys/user.h>
#include <sys/stat.h>
#include <sys/kcore.h>
-#include <machine/kcore.h>
+#include <i386/kcore.h>
#include <stdlib.h>
#include <unistd.h>
#include <nlist.h>
@@ -63,9 +63,9 @@ __RCSID("$NetBSD: kvm_i386.c,v 1.25 2008/01/15 13:57:42 ad Exp $");
#include "kvm_private.h"
-#include <machine/pmap.h>
-#include <machine/pte.h>
-#include <machine/vmparam.h>
+#include <i386/pmap.h>
+#include <i386/pte.h>
+#include <i386/vmparam.h>
#ifndef btop
#define btop(x) (((unsigned)(x)) >> PGSHIFT) /* XXX */