Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/sparc64/include Correct the `fast' int types.
details: https://anonhg.NetBSD.org/src/rev/f669181a2718
branches: trunk
changeset: 515355:f669181a2718
user: eeh <eeh%NetBSD.org@localhost>
date: Sat Sep 22 19:51:48 2001 +0000
description:
Correct the `fast' int types.
diffstat:
sys/arch/sparc64/include/int_mwgwtypes.h | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (26 lines):
diff -r 35a9f6b1c008 -r f669181a2718 sys/arch/sparc64/include/int_mwgwtypes.h
--- a/sys/arch/sparc64/include/int_mwgwtypes.h Sat Sep 22 18:51:35 2001 +0000
+++ b/sys/arch/sparc64/include/int_mwgwtypes.h Sat Sep 22 19:51:48 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/09/22 19:51:48 eeh Exp $ */
/*-
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@@ -68,11 +68,11 @@
/* 7.18.1.3 Fastest minimum-width integer types */
-typedef int int_fast8_t;
-typedef unsigned int uint_fast8_t;
-typedef int int_fast16_t;
-typedef unsigned int uint_fast16_t;
-typedef int int_fast32_t;
+typedef long int int_fast8_t;
+typedef unsigned char uint_fast8_t;
+typedef long int int_fast16_t;
+typedef unsigned short uint_fast16_t;
+typedef long int int_fast32_t;
typedef unsigned int uint_fast32_t;
#ifdef __COMPILER_INT64__
typedef __COMPILER_INT64__ int_fast64_t;
Home |
Main Index |
Thread Index |
Old Index