Module Name: src
Committed By: jakllsch
Date: Sun Nov 24 17:17:48 UTC 2013
Modified Files:
src/sys/arch/i386/stand/lib: exec.c
Log Message:
use <i386/multiboot.h> instead of <machine/multiboot.h> so this can be
compiled for amd64
To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/sys/arch/i386/stand/lib/exec.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/i386/stand/lib/exec.c
diff -u src/sys/arch/i386/stand/lib/exec.c:1.52 src/sys/arch/i386/stand/lib/exec.c:1.53
--- src/sys/arch/i386/stand/lib/exec.c:1.52 Sun Nov 24 17:16:29 2013
+++ src/sys/arch/i386/stand/lib/exec.c Sun Nov 24 17:17:48 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: exec.c,v 1.52 2013/11/24 17:16:29 jakllsch Exp $ */
+/* $NetBSD: exec.c,v 1.53 2013/11/24 17:17:48 jakllsch Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
#include <sys/reboot.h>
#include <sys/reboot.h>
-#include <machine/multiboot.h>
+#include <i386/multiboot.h>
#include <lib/libsa/stand.h>
#include <lib/libkern/libkern.h>