diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-06-06 00:49:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2009-06-06 00:49:09 +0000 |
commit | 83514f96d9aa48cd539e814b89181d9d49e4feb6 (patch) | |
tree | 746d6a05ad01aaf03e1a0f40fefe5cb6172c10bb /sys/arch/amd64 | |
parent | 9f700eebf4f0b712f5f37af58d78ebc7885a76b2 (diff) |
fix include paths
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/pci/vga_post.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/pci/vga_post.c b/sys/arch/amd64/pci/vga_post.c index 35f6840acf1..1cf51cf541b 100644 --- a/sys/arch/amd64/pci/vga_post.c +++ b/sys/arch/amd64/pci/vga_post.c @@ -1,5 +1,5 @@ /* $NetBSD: vga_post.c,v 1.12 2009/03/15 21:32:36 cegger Exp $ */ -/* $OpenBSD: vga_post.c,v 1.1 2009/06/06 00:35:00 pirofti Exp $ */ +/* $OpenBSD: vga_post.c,v 1.2 2009/06/06 00:49:08 deraadt Exp $ */ /*- * Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>. @@ -42,8 +42,8 @@ #include <machine/vga_post.h> -#include <lib/libkern/x86emu.h> -#include <lib/libkern/x86emu_regs.h> +#include <dev/x86emu/x86emu.h> +#include <dev/x86emu/x86emu_regs.h> #define BASE_MEMORY 65536 /* How much memory to allocate in Real Mode */ |