Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libutil prefer <sys/cpu.h> instead of <machine/cpu.h>



details:   https://anonhg.NetBSD.org/src/rev/b5d19c542387
branches:  trunk
changeset: 813371:b5d19c542387
user:      christos <christos%NetBSD.org@localhost>
date:      Mon Jan 25 18:14:04 2016 +0000

description:
prefer <sys/cpu.h> instead of <machine/cpu.h>

diffstat:

 lib/libutil/getbootfile.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r 539766c29f10 -r b5d19c542387 lib/libutil/getbootfile.c
--- a/lib/libutil/getbootfile.c Mon Jan 25 18:00:26 2016 +0000
+++ b/lib/libutil/getbootfile.c Mon Jan 25 18:14:04 2016 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index