Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch Fix a pasto in the __COMPILER_INT64__-based definit...
details: https://anonhg.NetBSD.org/src/rev/1a47ce9f94e0
branches: trunk
changeset: 516062:1a47ce9f94e0
user: kleink <kleink%NetBSD.org@localhost>
date: Sun Oct 14 20:11:11 2001 +0000
description:
Fix a pasto in the __COMPILER_INT64__-based definition of {u,}intmax_t.
diffstat:
sys/arch/sparc/include/int_mwgwtypes.h | 6 +++---
sys/arch/sparc64/include/int_mwgwtypes.h | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (40 lines):
diff -r 45ea486822fb -r 1a47ce9f94e0 sys/arch/sparc/include/int_mwgwtypes.h
--- a/sys/arch/sparc/include/int_mwgwtypes.h Sun Oct 14 19:58:16 2001 +0000
+++ b/sys/arch/sparc/include/int_mwgwtypes.h Sun Oct 14 20:11:11 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: int_mwgwtypes.h,v 1.2 2001/04/26 16:25:26 kleink Exp $ */
+/* $NetBSD: int_mwgwtypes.h,v 1.3 2001/10/14 20:11:11 kleink Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -92,8 +92,8 @@
/* 7.18.1.5 Greatest-width integer types */
#ifdef __COMPILER_INT64__
-typedef __COMPILER_INT64__ int_least64_t;
-typedef __COMPILER_UINT64__ uint_least64_t;
+typedef __COMPILER_INT64__ intmax_t;
+typedef __COMPILER_UINT64__ uintmax_t;
#else
#ifdef __arch64__
typedef long int intmax_t;
diff -r 45ea486822fb -r 1a47ce9f94e0 sys/arch/sparc64/include/int_mwgwtypes.h
--- a/sys/arch/sparc64/include/int_mwgwtypes.h Sun Oct 14 19:58:16 2001 +0000
+++ b/sys/arch/sparc64/include/int_mwgwtypes.h Sun Oct 14 20:11:11 2001 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: int_mwgwtypes.h,v 1.3 2001/09/22 19:51:48 eeh Exp $ */
+/* $NetBSD: int_mwgwtypes.h,v 1.4 2001/10/14 20:11:11 kleink Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -92,8 +92,8 @@
/* 7.18.1.5 Greatest-width integer types */
#ifdef __COMPILER_INT64__
-typedef __COMPILER_INT64__ int_least64_t;
-typedef __COMPILER_UINT64__ uint_least64_t;
+typedef __COMPILER_INT64__ intmax_t;
+typedef __COMPILER_UINT64__ uintmax_t;
#else
#ifdef __arch64__
typedef long int intmax_t;
Home |
Main Index |
Thread Index |
Old Index