Add LP64 bits (copied from MIPS).
This commit is contained in:
parent
0d380378cf
commit
6dc0eb390f
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: int_const.h,v 1.1 2001/04/14 22:38:41 kleink Exp $ */
|
||||
/* $NetBSD: int_const.h,v 1.2 2002/11/03 22:35:33 matt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -48,16 +48,29 @@
|
|||
#define INT8_C(c) c
|
||||
#define INT16_C(c) c
|
||||
#define INT32_C(c) c
|
||||
#ifdef _LP64
|
||||
#define INT64_C(c) c ## L
|
||||
#else
|
||||
#define INT64_C(c) c ## LL
|
||||
#endif
|
||||
|
||||
#define UINT8_C(c) c ## U
|
||||
#define UINT16_C(c) c ## U
|
||||
#define UINT32_C(c) c ## U
|
||||
#ifdef _LP64
|
||||
#define UINT64_C(c) c ## UL
|
||||
#else
|
||||
#define UINT64_C(c) c ## ULL
|
||||
#endif
|
||||
|
||||
/* 7.18.4.2 Macros for greatest-width integer constants */
|
||||
|
||||
#ifdef _LP64
|
||||
#define INTMAX_C(c) c ## L
|
||||
#define UINTMAX_C(c) c ## UL
|
||||
#else
|
||||
#define INTMAX_C(c) c ## LL
|
||||
#define UINTMAX_C(c) c ## ULL
|
||||
#endif
|
||||
|
||||
#endif /* !_POWERPC_INT_CONST_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: int_fmtio.h,v 1.2 2001/04/26 16:25:24 kleink Exp $ */
|
||||
/* $NetBSD: int_fmtio.h,v 1.3 2002/11/03 22:35:34 matt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -48,172 +48,329 @@
|
|||
#define PRId8 "d" /* int8_t */
|
||||
#define PRId16 "d" /* int16_t */
|
||||
#define PRId32 "d" /* int32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#define PRIdLEAST64 "ld" /* int_least64_t */
|
||||
#else
|
||||
#define PRIdLEAST64 "lld" /* int_least64_t */
|
||||
#endif
|
||||
#define PRIdFAST8 "d" /* int_fast8_t */
|
||||
#define PRIdFAST16 "d" /* int_fast16_t */
|
||||
#define PRIdFAST32 "d" /* int_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define PRIdFAST64 "ld" /* int_fast64_t */
|
||||
#else
|
||||
#define PRIdFAST64 "lld" /* int_fast64_t */
|
||||
#endif
|
||||
#ifdef _LP64
|
||||
#define PRIdMAX "ld" /* intmax_t */
|
||||
#define PRIdPTR "ld" /* intptr_t */
|
||||
#else
|
||||
#define PRIdMAX "lld" /* intmax_t */
|
||||
#define PRIdPTR "d" /* intptr_t */
|
||||
#endif
|
||||
|
||||
#define PRIi8 "i" /* int8_t */
|
||||
#define PRIi16 "i" /* int16_t */
|
||||
#define PRIi32 "i" /* int32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#define PRIiLEAST64 "li" /* int_least64_t */
|
||||
#else
|
||||
#define PRIiLEAST64 "lli" /* int_least64_t */
|
||||
#endif
|
||||
#define PRIiFAST8 "i" /* int_fast8_t */
|
||||
#define PRIiFAST16 "i" /* int_fast16_t */
|
||||
#define PRIiFAST32 "i" /* int_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define PRIiFAST64 "li" /* int_fast64_t */
|
||||
#define PRIiMAX "li" /* intmax_t */
|
||||
#define PRIiPTR "li" /* intptr_t */
|
||||
#else
|
||||
#define PRIiFAST64 "lli" /* int_fast64_t */
|
||||
#define PRIiMAX "lli" /* intmax_t */
|
||||
#define PRIiPTR "i" /* intptr_t */
|
||||
#endif
|
||||
|
||||
/* fprintf macros for unsigned integers */
|
||||
|
||||
#define PRIo8 "o" /* uint8_t */
|
||||
#define PRIo16 "o" /* uint16_t */
|
||||
#define PRIo32 "o" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#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 _LP64
|
||||
#define PRIoFAST64 "lo" /* uint_fast64_t */
|
||||
#define PRIoMAX "lo" /* uintmax_t */
|
||||
#define PRIoPTR "lo" /* uintptr_t */
|
||||
#else
|
||||
#define PRIoFAST64 "llo" /* uint_fast64_t */
|
||||
#define PRIoMAX "llo" /* uintmax_t */
|
||||
#define PRIoPTR "o" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#define PRIu8 "u" /* uint8_t */
|
||||
#define PRIu16 "u" /* uint16_t */
|
||||
#define PRIu32 "u" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#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 _LP64
|
||||
#define PRIuFAST64 "lu" /* uint_fast64_t */
|
||||
#define PRIuMAX "lu" /* uintmax_t */
|
||||
#define PRIuPTR "lu" /* uintptr_t */
|
||||
#else
|
||||
#define PRIuFAST64 "llu" /* uint_fast64_t */
|
||||
#define PRIuMAX "llu" /* uintmax_t */
|
||||
#define PRIuPTR "u" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#define PRIx8 "x" /* uint8_t */
|
||||
#define PRIx16 "x" /* uint16_t */
|
||||
#define PRIx32 "x" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#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 _LP64
|
||||
#define PRIxFAST64 "lx" /* uint_fast64_t */
|
||||
#define PRIxMAX "lx" /* uintmax_t */
|
||||
#define PRIxPTR "lx" /* uintptr_t */
|
||||
#else
|
||||
#define PRIxFAST64 "llx" /* uint_fast64_t */
|
||||
#define PRIxMAX "llx" /* uintmax_t */
|
||||
#define PRIxPTR "x" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#define PRIX8 "X" /* uint8_t */
|
||||
#define PRIX16 "X" /* uint16_t */
|
||||
#define PRIX32 "X" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#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 _LP64
|
||||
#define PRIXFAST64 "lX" /* uint_fast64_t */
|
||||
#define PRIXMAX "lX" /* uintmax_t */
|
||||
#define PRIXPTR "lX" /* uintptr_t */
|
||||
#else
|
||||
#define PRIXFAST64 "llX" /* uint_fast64_t */
|
||||
#define PRIXMAX "llX" /* uintmax_t */
|
||||
#define PRIXPTR "X" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
/* fscanf macros for signed integers */
|
||||
|
||||
#define SCNd8 "hhd" /* int8_t */
|
||||
#define SCNd16 "hd" /* int16_t */
|
||||
#define SCNd32 "d" /* int32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#define SCNdLEAST64 "ld" /* int_least64_t */
|
||||
#else
|
||||
#define SCNdLEAST64 "lld" /* int_least64_t */
|
||||
#endif
|
||||
#define SCNdFAST8 "d" /* int_fast8_t */
|
||||
#define SCNdFAST16 "d" /* int_fast16_t */
|
||||
#define SCNdFAST32 "d" /* int_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNdFAST64 "ld" /* int_fast64_t */
|
||||
#define SCNdMAX "ld" /* intmax_t */
|
||||
#define SCNdPTR "ld" /* intptr_t */
|
||||
#else
|
||||
#define SCNdFAST64 "lld" /* int_fast64_t */
|
||||
#define SCNdMAX "lld" /* intmax_t */
|
||||
#define SCNdPTR "d" /* intptr_t */
|
||||
#endif
|
||||
|
||||
#define SCNi8 "hhi" /* int8_t */
|
||||
#define SCNi16 "hi" /* int16_t */
|
||||
#define SCNi32 "i" /* int32_t */
|
||||
#ifdef _LP64
|
||||
#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 _LP64
|
||||
#define SCNiLEAST64 "li" /* int_least64_t */
|
||||
#else
|
||||
#define SCNiLEAST64 "lli" /* int_least64_t */
|
||||
#endif
|
||||
#define SCNiFAST8 "i" /* int_fast8_t */
|
||||
#define SCNiFAST16 "i" /* int_fast16_t */
|
||||
#define SCNiFAST32 "i" /* int_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNiFAST64 "li" /* int_fast64_t */
|
||||
#define SCNiMAX "li" /* intmax_t */
|
||||
#define SCNiPTR "li" /* intptr_t */
|
||||
#else
|
||||
#define SCNiFAST64 "lli" /* int_fast64_t */
|
||||
#define SCNiMAX "lli" /* intmax_t */
|
||||
#define SCNiPTR "i" /* intptr_t */
|
||||
#endif
|
||||
|
||||
/* fscanf macros for unsigned integers */
|
||||
|
||||
#define SCNo8 "hho" /* uint8_t */
|
||||
#define SCNo16 "ho" /* uint16_t */
|
||||
#define SCNo32 "o" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNo64 "lo" /* uint64_t */
|
||||
#else
|
||||
#define SCNo64 "llo" /* uint64_t */
|
||||
#endif
|
||||
#define SCNoLEAST8 "hho" /* uint_least8_t */
|
||||
#define SCNoLEAST16 "ho" /* uint_least16_t */
|
||||
#define SCNoLEAST32 "o" /* uint_least32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNoLEAST64 "lo" /* uint_least64_t */
|
||||
#else
|
||||
#define SCNoLEAST64 "llo" /* uint_least64_t */
|
||||
#endif
|
||||
#define SCNoFAST8 "o" /* uint_fast8_t */
|
||||
#define SCNoFAST16 "o" /* uint_fast16_t */
|
||||
#define SCNoFAST32 "o" /* uint_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNoFAST64 "lo" /* uint_fast64_t */
|
||||
#define SCNoMAX "lo" /* uintmax_t */
|
||||
#define SCNoPTR "lo" /* uintptr_t */
|
||||
#else
|
||||
#define SCNoFAST64 "llo" /* uint_fast64_t */
|
||||
#define SCNoMAX "llo" /* uintmax_t */
|
||||
#define SCNoPTR "o" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#define SCNu8 "hhu" /* uint8_t */
|
||||
#define SCNu16 "hu" /* uint16_t */
|
||||
#define SCNu32 "u" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNu64 "lu" /* uint64_t */
|
||||
#else
|
||||
#define SCNu64 "llu" /* uint64_t */
|
||||
#endif
|
||||
#define SCNuLEAST8 "hhu" /* uint_least8_t */
|
||||
#define SCNuLEAST16 "hu" /* uint_least16_t */
|
||||
#define SCNuLEAST32 "u" /* uint_least32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNuLEAST64 "lu" /* uint_least64_t */
|
||||
#else
|
||||
#define SCNuLEAST64 "llu" /* uint_least64_t */
|
||||
#endif
|
||||
#define SCNuFAST8 "u" /* uint_fast8_t */
|
||||
#define SCNuFAST16 "u" /* uint_fast16_t */
|
||||
#define SCNuFAST32 "u" /* uint_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNuFAST64 "lu" /* uint_fast64_t */
|
||||
#define SCNuMAX "lu" /* uintmax_t */
|
||||
#define SCNuPTR "lu" /* uintptr_t */
|
||||
#else
|
||||
#define SCNuFAST64 "llu" /* uint_fast64_t */
|
||||
#define SCNuMAX "llu" /* uintmax_t */
|
||||
#define SCNuPTR "u" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#define SCNx8 "hhx" /* uint8_t */
|
||||
#define SCNx16 "hx" /* uint16_t */
|
||||
#define SCNx32 "x" /* uint32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNx64 "lx" /* uint64_t */
|
||||
#else
|
||||
#define SCNx64 "llx" /* uint64_t */
|
||||
#endif
|
||||
#define SCNxLEAST8 "hhx" /* uint_least8_t */
|
||||
#define SCNxLEAST16 "hx" /* uint_least16_t */
|
||||
#define SCNxLEAST32 "x" /* uint_least32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNxLEAST64 "lx" /* uint_least64_t */
|
||||
#else
|
||||
#define SCNxLEAST64 "llx" /* uint_least64_t */
|
||||
#endif
|
||||
#define SCNxFAST8 "x" /* uint_fast8_t */
|
||||
#define SCNxFAST16 "x" /* uint_fast16_t */
|
||||
#define SCNxFAST32 "x" /* uint_fast32_t */
|
||||
#ifdef _LP64
|
||||
#define SCNxFAST64 "lx" /* uint_fast64_t */
|
||||
#define SCNxMAX "lx" /* uintmax_t */
|
||||
#define SCNxPTR "lx" /* uintptr_t */
|
||||
#else
|
||||
#define SCNxFAST64 "llx" /* uint_fast64_t */
|
||||
#define SCNxMAX "llx" /* uintmax_t */
|
||||
#define SCNxPTR "x" /* uintptr_t */
|
||||
#endif
|
||||
|
||||
#endif /* !_POWERPC_INT_FMTIO_H_ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: int_mwgwtypes.h,v 1.2 2001/04/26 16:25:24 kleink Exp $ */
|
||||
/* $NetBSD: int_mwgwtypes.h,v 1.3 2002/11/03 22:35:34 matt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
|
@ -54,6 +54,9 @@ typedef unsigned int uint_least32_t;
|
|||
#ifdef __COMPILER_INT64__
|
||||
typedef __COMPILER_INT64__ int_least64_t;
|
||||
typedef __COMPILER_UINT64__ uint_least64_t;
|
||||
#elif defined(_LP64)
|
||||
typedef long int int_least64_t;
|
||||
typedef unsigned long int uint_least64_t;
|
||||
#else
|
||||
/* LONGLONG */
|
||||
typedef long long int int_least64_t;
|
||||
|
@ -71,6 +74,9 @@ typedef unsigned int uint_fast32_t;
|
|||
#ifdef __COMPILER_INT64__
|
||||
typedef __COMPILER_INT64__ int_fast64_t;
|
||||
typedef __COMPILER_UINT64__ uint_fast64_t;
|
||||
#elif defined(_LP64)
|
||||
typedef long int int_fast64_t;
|
||||
typedef unsigned long int uint_fast64_t;
|
||||
#else
|
||||
/* LONGLONG */
|
||||
typedef long long int int_fast64_t;
|
||||
|
@ -82,7 +88,10 @@ typedef unsigned long long int uint_fast64_t;
|
|||
|
||||
#ifdef __COMPILER_INT64__
|
||||
typedef __COMPILER_INT64__ intmax_t;
|
||||
typedef __COMPILER_UINT64__ uintmax_t;
|
||||
typedef unsigned __COMPILER_INT64__ uintmax_t;
|
||||
#elif defined(_LP64)
|
||||
typedef long int intmax_t;
|
||||
typedef unsigned long int uintmax_t;
|
||||
#else
|
||||
/* LONGLONG */
|
||||
typedef long long int intmax_t;
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
/* $NetBSD: int_types.h,v 1.5 2001/04/28 15:41:32 kleink Exp $ */
|
||||
/* $NetBSD: int_types.h,v 1.6 2002/11/03 22:35:34 matt Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (C) 1995 Wolfgang Solfrank.
|
||||
* Copyright (C) 1995 TooLs GmbH.
|
||||
* All rights reserved.
|
||||
* Copyright (c) 1992, 1993
|
||||
* The Regents of the University of California. All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to Berkeley by
|
||||
* Ralph Campbell.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
|
@ -15,20 +17,25 @@
|
|||
* 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 TooLs GmbH.
|
||||
* 4. The name of TooLs GmbH may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
* This product includes software developed by the University of
|
||||
* California, Berkeley and its contributors.
|
||||
* 4. Neither the name of the University 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 TOOLS GMBH ``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 TOOLS GMBH 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.
|
||||
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
||||
*
|
||||
* from: @(#)types.h 8.3 (Berkeley) 1/5/94
|
||||
*/
|
||||
|
||||
#ifndef _POWERPC_INT_TYPES_H_
|
||||
|
@ -49,6 +56,9 @@ typedef unsigned int __uint32_t;
|
|||
#ifdef __COMPILER_INT64__
|
||||
typedef __COMPILER_INT64__ __int64_t;
|
||||
typedef __COMPILER_UINT64__ __uint64_t;
|
||||
#elif defined(_LP64)
|
||||
typedef long int __int64_t;
|
||||
typedef unsigned long int __uint64_t;
|
||||
#else
|
||||
/* LONGLONG */
|
||||
typedef long long int __int64_t;
|
||||
|
@ -60,7 +70,12 @@ typedef unsigned long long int __uint64_t;
|
|||
|
||||
/* 7.18.1.4 Integer types capable of holding object pointers */
|
||||
|
||||
#ifdef _LP64
|
||||
typedef long int __intptr_t;
|
||||
typedef unsigned long int __uintptr_t;
|
||||
#else
|
||||
typedef int __intptr_t;
|
||||
typedef unsigned int __uintptr_t;
|
||||
#endif
|
||||
|
||||
#endif /* !_POWERPC_INT_TYPES_H_ */
|
||||
|
|
Loading…
Reference in New Issue