Module Name: src
Committed By: christos
Date: Mon Jan 25 18:14:04 UTC 2016
Modified Files:
src/lib/libutil: getbootfile.c
Log Message:
prefer <sys/cpu.h> instead of <machine/cpu.h>
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/lib/libutil/getbootfile.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libutil/getbootfile.c
diff -u src/lib/libutil/getbootfile.c:1.5 src/lib/libutil/getbootfile.c:1.6
--- src/lib/libutil/getbootfile.c:1.5 Mon Apr 28 16:23:02 2008
+++ src/lib/libutil/getbootfile.c Mon Jan 25 13:14:04 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: getbootfile.c,v 1.5 2008/04/28 20:23:02 martin Exp $ */
+/* $NetBSD: getbootfile.c,v 1.6 2016/01/25 18:14:04 christos Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -31,12 +31,12 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: getbootfile.c,v 1.5 2008/04/28 20:23:02 martin Exp $");
+__RCSID("$NetBSD: getbootfile.c,v 1.6 2016/01/25 18:14:04 christos Exp $");
#endif
#include <sys/param.h>
#include <sys/sysctl.h>
-#include <machine/cpu.h>
+#include <sys/cpu.h>
#include <string.h>
#include <paths.h>
#include <util.h>