summaryrefslogtreecommitdiff
path: root/lib/libutil/getbootfile.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2016-01-25 18:14:04 +0000
committerchristos <christos@NetBSD.org>2016-01-25 18:14:04 +0000
commit4defd38d0e9022806675fd85f7d6d55ea3f5937a (patch)
tree0b4df60c2c013d3e15edb918e163985125dab7d9 /lib/libutil/getbootfile.c
parentebbf6319146d9414dbc90426b07e8ac22f4606ef (diff)
prefer <sys/cpu.h> instead of <machine/cpu.h>
Diffstat (limited to 'lib/libutil/getbootfile.c')
-rw-r--r--lib/libutil/getbootfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/getbootfile.c b/lib/libutil/getbootfile.c
index 8b296f3e0b8..081a703b411 100644
--- a/lib/libutil/getbootfile.c
+++ b/lib/libutil/getbootfile.c
@@ -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>