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 merge with sparc.
details: https://anonhg.NetBSD.org/src/rev/f6b7444572a7
branches: trunk
changeset: 534548:f6b7444572a7
user: mrg <mrg%NetBSD.org@localhost>
date: Mon Jul 29 07:07:15 2002 +0000
description:
merge with sparc.
diffstat:
sys/arch/sparc64/include/int_fmtio.h | 396 +----------------------------------
1 files changed, 2 insertions(+), 394 deletions(-)
diffs (truncated from 401 to 300 lines):
diff -r ba6018f720d0 -r f6b7444572a7 sys/arch/sparc64/include/int_fmtio.h
--- a/sys/arch/sparc64/include/int_fmtio.h Mon Jul 29 06:39:41 2002 +0000
+++ b/sys/arch/sparc64/include/int_fmtio.h Mon Jul 29 07:07:15 2002 +0000
@@ -1,395 +1,3 @@
-/* $NetBSD: int_fmtio.h,v 1.3 2001/10/06 01:21:40 thorpej Exp $ */
-
-/*-
- * Copyright (c) 2001 The NetBSD Foundation, Inc.
- * All rights reserved.
- *
- * This code is derived from software contributed to The NetBSD Foundation
- * by Klaus Klein.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the NetBSD
- * Foundation, Inc. and its contributors.
- * 4. Neither the name of The NetBSD Foundation nor the names of its
- * contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef _SPARC64_INT_FMTIO_H_
-#define _SPARC64_INT_FMTIO_H_
-
-/*
- * 7.8.1 Macros for format specifiers
- */
-
-/* fprintf macros for signed integers */
-
-#define PRId8 "d" /* int8_t */
-#define PRId16 "d" /* int16_t */
-#define PRId32 "d" /* int32_t */
-#ifdef __arch64__
-#define PRId64 "ld" /* int64_t */
-#else
-#define PRId64 "lld" /* int64_t */
-#endif
-#define PRIdLEAST8 "d" /* int_least8_t */
-#define PRIdLEAST16 "d" /* int_least16_t */
-#define PRIdLEAST32 "d" /* int_least32_t */
-#ifdef __arch64__
-#define PRIdLEAST64 "ld" /* int_least64_t */
-#else
-#define PRIdLEAST64 "lld" /* int_least64_t */
-#endif
-#define PRIdFAST8 "ld" /* int_fast8_t */
-#define PRIdFAST16 "ld" /* int_fast16_t */
-#define PRIdFAST32 "ld" /* int_fast32_t */
-#ifdef __arch64__
-#define PRIdFAST64 "ld" /* int_fast64_t */
-#else
-#define PRIdFAST64 "lld" /* int_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIdMAX "ld" /* intmax_t */
-#else
-#define PRIdMAX "lld" /* intmax_t */
-#endif
-#define PRIdPTR "ld" /* intptr_t */
-
-#define PRIi8 "i" /* int8_t */
-#define PRIi16 "i" /* int16_t */
-#define PRIi32 "i" /* int32_t */
-#ifdef __arch64__
-#define PRIi64 "li" /* int64_t */
-#else
-#define PRIi64 "lli" /* int64_t */
-#endif
-#define PRIiLEAST8 "i" /* int_least8_t */
-#define PRIiLEAST16 "i" /* int_least16_t */
-#define PRIiLEAST32 "i" /* int_least32_t */
-#ifdef __arch64__
-#define PRIiLEAST64 "li" /* int_least64_t */
-#else
-#define PRIiLEAST64 "lli" /* int_least64_t */
-#endif
-#define PRIiFAST8 "li" /* int_fast8_t */
-#define PRIiFAST16 "li" /* int_fast16_t */
-#define PRIiFAST32 "li" /* int_fast32_t */
-#ifdef __arch64__
-#define PRIiFAST64 "li" /* int_fast64_t */
-#else
-#define PRIiFAST64 "lli" /* int_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIiMAX "li" /* intmax_t */
-#else
-#define PRIiMAX "lli" /* intmax_t */
-#endif
-#define PRIiPTR "li" /* intptr_t */
-
-/* fprintf macros for unsigned integers */
-
-#define PRIo8 "o" /* uint8_t */
-#define PRIo16 "o" /* uint16_t */
-#define PRIo32 "o" /* uint32_t */
-#ifdef __arch64__
-#define PRIo64 "lo" /* uint64_t */
-#else
-#define PRIo64 "llo" /* uint64_t */
-#endif
-#define PRIoLEAST8 "o" /* uint_least8_t */
-#define PRIoLEAST16 "o" /* uint_least16_t */
-#define PRIoLEAST32 "o" /* uint_least32_t */
-#ifdef __arch64__
-#define PRIoLEAST64 "lo" /* uint_least64_t */
-#else
-#define PRIoLEAST64 "llo" /* uint_least64_t */
-#endif
-#define PRIoFAST8 "o" /* uint_fast8_t */
-#define PRIoFAST16 "o" /* uint_fast16_t */
-#define PRIoFAST32 "o" /* uint_fast32_t */
-#ifdef __arch64__
-#define PRIoFAST64 "lo" /* uint_fast64_t */
-#else
-#define PRIoFAST64 "llo" /* uint_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIoMAX "lo" /* uintmax_t */
-#else
-#define PRIoMAX "llo" /* uintmax_t */
-#endif
-#define PRIoPTR "lo" /* uintptr_t */
-
-#define PRIu8 "u" /* uint8_t */
-#define PRIu16 "u" /* uint16_t */
-#define PRIu32 "u" /* uint32_t */
-#ifdef __arch64__
-#define PRIu64 "lu" /* uint64_t */
-#else
-#define PRIu64 "llu" /* uint64_t */
-#endif
-#define PRIuLEAST8 "u" /* uint_least8_t */
-#define PRIuLEAST16 "u" /* uint_least16_t */
-#define PRIuLEAST32 "u" /* uint_least32_t */
-#ifdef __arch64__
-#define PRIuLEAST64 "lu" /* uint_least64_t */
-#else
-#define PRIuLEAST64 "llu" /* uint_least64_t */
-#endif
-#define PRIuFAST8 "u" /* uint_fast8_t */
-#define PRIuFAST16 "u" /* uint_fast16_t */
-#define PRIuFAST32 "u" /* uint_fast32_t */
-#ifdef __arch64__
-#define PRIuFAST64 "lu" /* uint_fast64_t */
-#else
-#define PRIuFAST64 "llu" /* uint_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIuMAX "lu" /* uintmax_t */
-#else
-#define PRIuMAX "llu" /* uintmax_t */
-#endif
-#define PRIuPTR "lu" /* uintptr_t */
+/* $NetBSD: int_fmtio.h,v 1.4 2002/07/29 07:07:15 mrg Exp $ */
-#define PRIx8 "x" /* uint8_t */
-#define PRIx16 "x" /* uint16_t */
-#define PRIx32 "x" /* uint32_t */
-#ifdef __arch64__
-#define PRIx64 "lx" /* uint64_t */
-#else
-#define PRIx64 "llx" /* uint64_t */
-#endif
-#define PRIxLEAST8 "x" /* uint_least8_t */
-#define PRIxLEAST16 "x" /* uint_least16_t */
-#define PRIxLEAST32 "x" /* uint_least32_t */
-#ifdef __arch64__
-#define PRIxLEAST64 "lx" /* uint_least64_t */
-#else
-#define PRIxLEAST64 "llx" /* uint_least64_t */
-#endif
-#define PRIxFAST8 "x" /* uint_fast8_t */
-#define PRIxFAST16 "x" /* uint_fast16_t */
-#define PRIxFAST32 "x" /* uint_fast32_t */
-#ifdef __arch64__
-#define PRIxFAST64 "lx" /* uint_fast64_t */
-#else
-#define PRIxFAST64 "llx" /* uint_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIxMAX "lx" /* uintmax_t */
-#else
-#define PRIxMAX "llx" /* uintmax_t */
-#endif
-#define PRIxPTR "lx" /* uintptr_t */
-
-#define PRIX8 "X" /* uint8_t */
-#define PRIX16 "X" /* uint16_t */
-#define PRIX32 "X" /* uint32_t */
-#ifdef __arch64__
-#define PRIX64 "lX" /* uint64_t */
-#else
-#define PRIX64 "llX" /* uint64_t */
-#endif
-#define PRIXLEAST8 "X" /* uint_least8_t */
-#define PRIXLEAST16 "X" /* uint_least16_t */
-#define PRIXLEAST32 "X" /* uint_least32_t */
-#ifdef __arch64__
-#define PRIXLEAST64 "lX" /* uint_least64_t */
-#else
-#define PRIXLEAST64 "llX" /* uint_least64_t */
-#endif
-#define PRIXFAST8 "X" /* uint_fast8_t */
-#define PRIXFAST16 "X" /* uint_fast16_t */
-#define PRIXFAST32 "X" /* uint_fast32_t */
-#ifdef __arch64__
-#define PRIXFAST64 "lX" /* uint_fast64_t */
-#else
-#define PRIXFAST64 "llX" /* uint_fast64_t */
-#endif
-#ifdef __arch64__
-#define PRIXMAX "lX" /* uintmax_t */
-#else
-#define PRIXMAX "llX" /* uintmax_t */
-#endif
-#define PRIXPTR "lX" /* uintptr_t */
-
-/* fscanf macros for signed integers */
-
-#define SCNd8 "hhd" /* int8_t */
-#define SCNd16 "hd" /* int16_t */
-#define SCNd32 "d" /* int32_t */
-#ifdef __arch64__
-#define SCNd64 "ld" /* int64_t */
-#else
-#define SCNd64 "lld" /* int64_t */
-#endif
-#define SCNdLEAST8 "hhd" /* int_least8_t */
-#define SCNdLEAST16 "hd" /* int_least16_t */
-#define SCNdLEAST32 "d" /* int_least32_t */
-#ifdef __arch64__
-#define SCNdLEAST64 "ld" /* int_least64_t */
-#else
-#define SCNdLEAST64 "lld" /* int_least64_t */
-#endif
-#define SCNdFAST8 "ld" /* int_fast8_t */
-#define SCNdFAST16 "ld" /* int_fast16_t */
-#define SCNdFAST32 "ld" /* int_fast32_t */
-#ifdef __arch64__
-#define SCNdFAST64 "ld" /* int_fast64_t */
-#else
-#define SCNdFAST64 "lld" /* int_fast64_t */
-#endif
-#ifdef __arch64__
-#define SCNdMAX "ld" /* intmax_t */
-#else
-#define SCNdMAX "lld" /* intmax_t */
-#endif
-#define SCNdPTR "ld" /* intptr_t */
-
-#define SCNi8 "hhi" /* int8_t */
-#define SCNi16 "hi" /* int16_t */
-#define SCNi32 "i" /* int32_t */
-#ifdef __arch64__
-#define SCNi64 "li" /* int64_t */
-#else
-#define SCNi64 "lli" /* int64_t */
-#endif
-#define SCNiLEAST8 "hhi" /* int_least8_t */
-#define SCNiLEAST16 "hi" /* int_least16_t */
-#define SCNiLEAST32 "i" /* int_least32_t */
-#ifdef __arch64__
-#define SCNiLEAST64 "li" /* int_least64_t */
-#else
-#define SCNiLEAST64 "lli" /* int_least64_t */
-#endif
-#define SCNiFAST8 "li" /* int_fast8_t */
-#define SCNiFAST16 "li" /* int_fast16_t */
-#define SCNiFAST32 "li" /* int_fast32_t */
-#ifdef __arch64__
-#define SCNiFAST64 "li" /* int_fast64_t */
-#else
-#define SCNiFAST64 "lli" /* int_fast64_t */
-#endif
-#ifdef __arch64__
-#define SCNiMAX "li" /* intmax_t */
-#else
Home |
Main Index |
Thread Index |
Old Index