Source-Changes-HG archive

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

[src/trunk]: src/sys/sys <sys/xcall.h> needs <sys/types.h> for uint64_t.



details:   https://anonhg.NetBSD.org/src/rev/a4bc6bf97b1d
branches:  trunk
changeset: 992602:a4bc6bf97b1d
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Mon Aug 27 07:10:15 2018 +0000

description:
<sys/xcall.h> needs <sys/types.h> for uint64_t.

diffstat:

 sys/sys/xcall.h |  5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 07ee3620b361 -r a4bc6bf97b1d sys/sys/xcall.h
--- a/sys/sys/xcall.h   Mon Aug 27 07:10:05 2018 +0000
+++ b/sys/sys/xcall.h   Mon Aug 27 07:10:15 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: xcall.h,v 1.6 2018/02/01 03:15:29 ozaki-r Exp $        */
+/*     $NetBSD: xcall.h,v 1.7 2018/08/27 07:10:15 riastradh Exp $      */
 
 /*-
  * Copyright (c) 2007 The NetBSD Foundation, Inc.
@@ -33,6 +33,9 @@
 #define        _SYS_XCALL_H_
 
 #ifdef _KERNEL
+
+#include <sys/types.h>
+
 #define XC_HIGHPRI             0x01    /* high priority */
 #define XC_HIGHPRI_IPL(ipl)    (XC_HIGHPRI | xc_encode_ipl(ipl))
 



Home | Main Index | Thread Index | Old Index