Module Name:    src
Committed By:   matt
Date:           Wed Aug 13 22:25:40 UTC 2014

Modified Files:
        src/sys/arch/alpha/include: int_mwgwtypes.h
        src/sys/arch/ia64/include: int_mwgwtypes.h
        src/sys/arch/m68k/include: int_mwgwtypes.h
        src/sys/arch/mips/include: int_mwgwtypes.h
        src/sys/arch/powerpc/include: int_mwgwtypes.h
        src/sys/arch/sh3/include: int_mwgwtypes.h
        src/sys/arch/sparc/include: int_mwgwtypes.h
        src/sys/arch/vax/include: int_mwgwtypes.h

Log Message:
include <sys/common_int_mwgwtypes.h> if __UINT_FAST64_TYPE__ is defined.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/alpha/include/int_mwgwtypes.h
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/ia64/include/int_mwgwtypes.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/include/int_mwgwtypes.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mips/include/int_mwgwtypes.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/powerpc/include/int_mwgwtypes.h
cvs rdiff -u -r1.5 -r1.6 src/sys/arch/sh3/include/int_mwgwtypes.h
cvs rdiff -u -r1.6 -r1.7 src/sys/arch/sparc/include/int_mwgwtypes.h
cvs rdiff -u -r1.4 -r1.5 src/sys/arch/vax/include/int_mwgwtypes.h

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/alpha/include/int_mwgwtypes.h
diff -u src/sys/arch/alpha/include/int_mwgwtypes.h:1.5 src/sys/arch/alpha/include/int_mwgwtypes.h:1.6
--- src/sys/arch/alpha/include/int_mwgwtypes.h:1.5	Mon Apr 28 20:23:11 2008
+++ src/sys/arch/alpha/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.5 2008/04/28 20:23:11 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.6 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _ALPHA_INT_MWGWTYPES_H_
 #define _ALPHA_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -74,4 +77,6 @@ typedef	unsigned long int	 uint_fast64_t
 typedef	long int		      intmax_t;
 typedef	unsigned long int	     uintmax_t;
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_ALPHA_INT_MWGWTYPES_H_ */

Index: src/sys/arch/ia64/include/int_mwgwtypes.h
diff -u src/sys/arch/ia64/include/int_mwgwtypes.h:1.2 src/sys/arch/ia64/include/int_mwgwtypes.h:1.3
--- src/sys/arch/ia64/include/int_mwgwtypes.h:1.2	Mon Apr 28 20:23:25 2008
+++ src/sys/arch/ia64/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.2 2008/04/28 20:23:25 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.3 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _IA64_INT_MWGWTYPES_H_
 #define _IA64_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -74,4 +77,6 @@ typedef	unsigned long int	 uint_fast64_t
 typedef	long int		      intmax_t;
 typedef	unsigned long int	     uintmax_t;
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_IA64_INT_MWGWTYPES_H_ */

Index: src/sys/arch/m68k/include/int_mwgwtypes.h
diff -u src/sys/arch/m68k/include/int_mwgwtypes.h:1.4 src/sys/arch/m68k/include/int_mwgwtypes.h:1.5
--- src/sys/arch/m68k/include/int_mwgwtypes.h:1.4	Mon Apr 28 20:23:26 2008
+++ src/sys/arch/m68k/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.4 2008/04/28 20:23:26 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.5 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _M68K_INT_MWGWTYPES_H_
 #define _M68K_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -84,4 +87,7 @@ typedef	long long int		      intmax_t;
 typedef	unsigned long long int	     uintmax_t;
 #endif
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 #endif /* !_M68K_INT_MWGWTYPES_H_ */

Index: src/sys/arch/mips/include/int_mwgwtypes.h
diff -u src/sys/arch/mips/include/int_mwgwtypes.h:1.5 src/sys/arch/mips/include/int_mwgwtypes.h:1.6
--- src/sys/arch/mips/include/int_mwgwtypes.h:1.5	Mon Apr 28 20:23:28 2008
+++ src/sys/arch/mips/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.5 2008/04/28 20:23:28 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.6 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _MIPS_INT_MWGWTYPES_H_
 #define _MIPS_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -92,4 +95,6 @@ typedef	long long int		      intmax_t;
 typedef	unsigned long long int	     uintmax_t;
 #endif
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_MIPS_INT_MWGWTYPES_H_ */

Index: src/sys/arch/powerpc/include/int_mwgwtypes.h
diff -u src/sys/arch/powerpc/include/int_mwgwtypes.h:1.5 src/sys/arch/powerpc/include/int_mwgwtypes.h:1.6
--- src/sys/arch/powerpc/include/int_mwgwtypes.h:1.5	Mon Apr 28 20:23:32 2008
+++ src/sys/arch/powerpc/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.5 2008/04/28 20:23:32 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.6 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _POWERPC_INT_MWGWTYPES_H_
 #define _POWERPC_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -92,4 +95,6 @@ typedef	long long int		      intmax_t;
 typedef	unsigned long long int	     uintmax_t;
 #endif
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_POWERPC_INT_MWGWTYPES_H_ */

Index: src/sys/arch/sh3/include/int_mwgwtypes.h
diff -u src/sys/arch/sh3/include/int_mwgwtypes.h:1.5 src/sys/arch/sh3/include/int_mwgwtypes.h:1.6
--- src/sys/arch/sh3/include/int_mwgwtypes.h:1.5	Mon Apr 28 20:23:35 2008
+++ src/sys/arch/sh3/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.5 2008/04/28 20:23:35 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.6 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _SH3_INT_MWGWTYPES_H_
 #define	_SH3_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -83,4 +86,6 @@ typedef	long long int		      intmax_t;
 typedef	unsigned long long int	     uintmax_t;
 #endif
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_SH3_INT_MWGWTYPES_H_ */

Index: src/sys/arch/sparc/include/int_mwgwtypes.h
diff -u src/sys/arch/sparc/include/int_mwgwtypes.h:1.6 src/sys/arch/sparc/include/int_mwgwtypes.h:1.7
--- src/sys/arch/sparc/include/int_mwgwtypes.h:1.6	Mon Apr 28 20:23:36 2008
+++ src/sys/arch/sparc/include/int_mwgwtypes.h	Wed Aug 13 22:25:39 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.6 2008/04/28 20:23:36 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.7 2014/08/13 22:25:39 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _SPARC_INT_MWGWTYPES_H_
 #define _SPARC_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -114,4 +117,6 @@ typedef	unsigned long long int	     uint
 #endif /* __arch64__ */
 #endif /* __COMPILER_INT64__ */
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_SPARC_INT_MWGWTYPES_H_ */

Index: src/sys/arch/vax/include/int_mwgwtypes.h
diff -u src/sys/arch/vax/include/int_mwgwtypes.h:1.4 src/sys/arch/vax/include/int_mwgwtypes.h:1.5
--- src/sys/arch/vax/include/int_mwgwtypes.h:1.4	Mon Apr 28 20:23:39 2008
+++ src/sys/arch/vax/include/int_mwgwtypes.h	Wed Aug 13 22:25:40 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: int_mwgwtypes.h,v 1.4 2008/04/28 20:23:39 martin Exp $	*/
+/*	$NetBSD: int_mwgwtypes.h,v 1.5 2014/08/13 22:25:40 matt Exp $	*/
 
 /*-
  * Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -32,6 +32,9 @@
 #ifndef _VAX_INT_MWGWTYPES_H_
 #define _VAX_INT_MWGWTYPES_H_
 
+#ifdef __UINT_FAST64_TYPE__
+#include <sys/common_int_mwgwtypes.h>
+#else
 /*
  * 7.18.1 Integer types
  */
@@ -84,4 +87,6 @@ typedef	long long int		      intmax_t;
 typedef	unsigned long long int	     uintmax_t;
 #endif
 
+#endif /* !__UINT_FAST64_TYPE__ */
+
 #endif /* !_VAX_INT_MWGWTYPES_H_ */

Reply via email to