Home | History | Annotate | Line # | Download | only in include
int_fmtio.h revision 1.5
      1  1.5    matt /*	$NetBSD: int_fmtio.h,v 1.5 2014/08/13 19:48:17 matt Exp $	*/
      2  1.1  kleink 
      3  1.1  kleink /*-
      4  1.1  kleink  * Copyright (c) 2001 The NetBSD Foundation, Inc.
      5  1.1  kleink  * All rights reserved.
      6  1.1  kleink  *
      7  1.1  kleink  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  kleink  * by Klaus Klein.
      9  1.1  kleink  *
     10  1.1  kleink  * Redistribution and use in source and binary forms, with or without
     11  1.1  kleink  * modification, are permitted provided that the following conditions
     12  1.1  kleink  * are met:
     13  1.1  kleink  * 1. Redistributions of source code must retain the above copyright
     14  1.1  kleink  *    notice, this list of conditions and the following disclaimer.
     15  1.1  kleink  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  kleink  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  kleink  *    documentation and/or other materials provided with the distribution.
     18  1.1  kleink  *
     19  1.1  kleink  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1  kleink  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1  kleink  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1  kleink  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1  kleink  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1  kleink  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1  kleink  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1  kleink  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1  kleink  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1  kleink  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1  kleink  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1  kleink  */
     31  1.1  kleink 
     32  1.1  kleink #ifndef _POWERPC_INT_FMTIO_H_
     33  1.1  kleink #define _POWERPC_INT_FMTIO_H_
     34  1.1  kleink 
     35  1.5    matt #ifdef __INTPTR_FMTd__
     36  1.5    matt #include <sys/common_int_fmtio.h>
     37  1.5    matt #else
     38  1.1  kleink /*
     39  1.1  kleink  * 7.8.1 Macros for format specifiers
     40  1.1  kleink  */
     41  1.1  kleink 
     42  1.1  kleink /* fprintf macros for signed integers */
     43  1.1  kleink 
     44  1.1  kleink #define	PRId8		"d"	/* int8_t		*/
     45  1.1  kleink #define	PRId16		"d"	/* int16_t		*/
     46  1.1  kleink #define	PRId32		"d"	/* int32_t		*/
     47  1.3    matt #ifdef _LP64
     48  1.3    matt #define	PRId64		"ld"	/* int64_t		*/
     49  1.3    matt #else
     50  1.1  kleink #define	PRId64		"lld"	/* int64_t		*/
     51  1.3    matt #endif
     52  1.1  kleink #define	PRIdLEAST8	"d"	/* int_least8_t		*/
     53  1.1  kleink #define	PRIdLEAST16	"d"	/* int_least16_t	*/
     54  1.1  kleink #define	PRIdLEAST32	"d"	/* int_least32_t	*/
     55  1.3    matt #ifdef _LP64
     56  1.3    matt #define	PRIdLEAST64	"ld"	/* int_least64_t	*/
     57  1.3    matt #else
     58  1.1  kleink #define	PRIdLEAST64	"lld"	/* int_least64_t	*/
     59  1.3    matt #endif
     60  1.2  kleink #define	PRIdFAST8	"d"	/* int_fast8_t		*/
     61  1.2  kleink #define	PRIdFAST16	"d"	/* int_fast16_t		*/
     62  1.2  kleink #define	PRIdFAST32	"d"	/* int_fast32_t		*/
     63  1.3    matt #ifdef _LP64
     64  1.3    matt #define	PRIdFAST64	"ld"	/* int_fast64_t		*/
     65  1.3    matt #else
     66  1.2  kleink #define	PRIdFAST64	"lld"	/* int_fast64_t		*/
     67  1.3    matt #endif
     68  1.3    matt #ifdef _LP64
     69  1.3    matt #define	PRIdMAX		"ld"	/* intmax_t		*/
     70  1.3    matt #define	PRIdPTR		"ld"	/* intptr_t		*/
     71  1.3    matt #else
     72  1.1  kleink #define	PRIdMAX		"lld"	/* intmax_t		*/
     73  1.1  kleink #define	PRIdPTR		"d"	/* intptr_t		*/
     74  1.3    matt #endif
     75  1.1  kleink 
     76  1.1  kleink #define	PRIi8		"i"	/* int8_t		*/
     77  1.1  kleink #define	PRIi16		"i"	/* int16_t		*/
     78  1.1  kleink #define	PRIi32		"i"	/* int32_t		*/
     79  1.3    matt #ifdef _LP64
     80  1.3    matt #define	PRIi64		"li"	/* int64_t		*/
     81  1.3    matt #else
     82  1.1  kleink #define	PRIi64		"lli"	/* int64_t		*/
     83  1.3    matt #endif
     84  1.1  kleink #define	PRIiLEAST8	"i"	/* int_least8_t		*/
     85  1.1  kleink #define	PRIiLEAST16	"i"	/* int_least16_t	*/
     86  1.1  kleink #define	PRIiLEAST32	"i"	/* int_least32_t	*/
     87  1.3    matt #ifdef _LP64
     88  1.3    matt #define	PRIiLEAST64	"li"	/* int_least64_t	*/
     89  1.3    matt #else
     90  1.1  kleink #define	PRIiLEAST64	"lli"	/* int_least64_t	*/
     91  1.3    matt #endif
     92  1.2  kleink #define	PRIiFAST8	"i"	/* int_fast8_t		*/
     93  1.2  kleink #define	PRIiFAST16	"i"	/* int_fast16_t		*/
     94  1.2  kleink #define	PRIiFAST32	"i"	/* int_fast32_t		*/
     95  1.3    matt #ifdef _LP64
     96  1.3    matt #define	PRIiFAST64	"li"	/* int_fast64_t		*/
     97  1.3    matt #define	PRIiMAX		"li"	/* intmax_t		*/
     98  1.3    matt #define	PRIiPTR		"li"	/* intptr_t		*/
     99  1.3    matt #else
    100  1.2  kleink #define	PRIiFAST64	"lli"	/* int_fast64_t		*/
    101  1.1  kleink #define	PRIiMAX		"lli"	/* intmax_t		*/
    102  1.1  kleink #define	PRIiPTR		"i"	/* intptr_t		*/
    103  1.3    matt #endif
    104  1.1  kleink 
    105  1.1  kleink /* fprintf macros for unsigned integers */
    106  1.1  kleink 
    107  1.1  kleink #define	PRIo8		"o"	/* uint8_t		*/
    108  1.1  kleink #define	PRIo16		"o"	/* uint16_t		*/
    109  1.1  kleink #define	PRIo32		"o"	/* uint32_t		*/
    110  1.3    matt #ifdef _LP64
    111  1.3    matt #define	PRIo64		"lo"	/* uint64_t		*/
    112  1.3    matt #else
    113  1.1  kleink #define	PRIo64		"llo"	/* uint64_t		*/
    114  1.3    matt #endif
    115  1.1  kleink #define	PRIoLEAST8	"o"	/* uint_least8_t	*/
    116  1.1  kleink #define	PRIoLEAST16	"o"	/* uint_least16_t	*/
    117  1.1  kleink #define	PRIoLEAST32	"o"	/* uint_least32_t	*/
    118  1.3    matt #ifdef _LP64
    119  1.3    matt #define	PRIoLEAST64	"lo"	/* uint_least64_t	*/
    120  1.3    matt #else
    121  1.1  kleink #define	PRIoLEAST64	"llo"	/* uint_least64_t	*/
    122  1.3    matt #endif
    123  1.2  kleink #define	PRIoFAST8	"o"	/* uint_fast8_t		*/
    124  1.2  kleink #define	PRIoFAST16	"o"	/* uint_fast16_t	*/
    125  1.2  kleink #define	PRIoFAST32	"o"	/* uint_fast32_t	*/
    126  1.3    matt #ifdef _LP64
    127  1.3    matt #define	PRIoFAST64	"lo"	/* uint_fast64_t	*/
    128  1.3    matt #define	PRIoMAX		"lo"	/* uintmax_t		*/
    129  1.3    matt #define	PRIoPTR		"lo"	/* uintptr_t		*/
    130  1.3    matt #else
    131  1.2  kleink #define	PRIoFAST64	"llo"	/* uint_fast64_t	*/
    132  1.1  kleink #define	PRIoMAX		"llo"	/* uintmax_t		*/
    133  1.1  kleink #define	PRIoPTR		"o"	/* uintptr_t		*/
    134  1.3    matt #endif
    135  1.1  kleink 
    136  1.1  kleink #define	PRIu8		"u"	/* uint8_t		*/
    137  1.1  kleink #define	PRIu16		"u"	/* uint16_t		*/
    138  1.1  kleink #define	PRIu32		"u"	/* uint32_t		*/
    139  1.3    matt #ifdef _LP64
    140  1.3    matt #define	PRIu64		"lu"	/* uint64_t		*/
    141  1.3    matt #else
    142  1.1  kleink #define	PRIu64		"llu"	/* uint64_t		*/
    143  1.3    matt #endif
    144  1.1  kleink #define	PRIuLEAST8	"u"	/* uint_least8_t	*/
    145  1.1  kleink #define	PRIuLEAST16	"u"	/* uint_least16_t	*/
    146  1.1  kleink #define	PRIuLEAST32	"u"	/* uint_least32_t	*/
    147  1.3    matt #ifdef _LP64
    148  1.3    matt #define	PRIuLEAST64	"lu"	/* uint_least64_t	*/
    149  1.3    matt #else
    150  1.1  kleink #define	PRIuLEAST64	"llu"	/* uint_least64_t	*/
    151  1.3    matt #endif
    152  1.2  kleink #define	PRIuFAST8	"u"	/* uint_fast8_t		*/
    153  1.2  kleink #define	PRIuFAST16	"u"	/* uint_fast16_t	*/
    154  1.2  kleink #define	PRIuFAST32	"u"	/* uint_fast32_t	*/
    155  1.3    matt #ifdef _LP64
    156  1.3    matt #define	PRIuFAST64	"lu"	/* uint_fast64_t	*/
    157  1.3    matt #define	PRIuMAX		"lu"	/* uintmax_t		*/
    158  1.3    matt #define	PRIuPTR		"lu"	/* uintptr_t		*/
    159  1.3    matt #else
    160  1.2  kleink #define	PRIuFAST64	"llu"	/* uint_fast64_t	*/
    161  1.1  kleink #define	PRIuMAX		"llu"	/* uintmax_t		*/
    162  1.1  kleink #define	PRIuPTR		"u"	/* uintptr_t		*/
    163  1.3    matt #endif
    164  1.1  kleink 
    165  1.1  kleink #define	PRIx8		"x"	/* uint8_t		*/
    166  1.1  kleink #define	PRIx16		"x"	/* uint16_t		*/
    167  1.1  kleink #define	PRIx32		"x"	/* uint32_t		*/
    168  1.3    matt #ifdef _LP64
    169  1.3    matt #define	PRIx64		"lx"	/* uint64_t		*/
    170  1.3    matt #else
    171  1.1  kleink #define	PRIx64		"llx"	/* uint64_t		*/
    172  1.3    matt #endif
    173  1.1  kleink #define	PRIxLEAST8	"x"	/* uint_least8_t	*/
    174  1.1  kleink #define	PRIxLEAST16	"x"	/* uint_least16_t	*/
    175  1.1  kleink #define	PRIxLEAST32	"x"	/* uint_least32_t	*/
    176  1.3    matt #ifdef _LP64
    177  1.3    matt #define	PRIxLEAST64	"lx"	/* uint_least64_t	*/
    178  1.3    matt #else
    179  1.1  kleink #define	PRIxLEAST64	"llx"	/* uint_least64_t	*/
    180  1.3    matt #endif
    181  1.2  kleink #define	PRIxFAST8	"x"	/* uint_fast8_t		*/
    182  1.2  kleink #define	PRIxFAST16	"x"	/* uint_fast16_t	*/
    183  1.2  kleink #define	PRIxFAST32	"x"	/* uint_fast32_t	*/
    184  1.3    matt #ifdef _LP64
    185  1.3    matt #define	PRIxFAST64	"lx"	/* uint_fast64_t	*/
    186  1.3    matt #define	PRIxMAX		"lx"	/* uintmax_t		*/
    187  1.3    matt #define	PRIxPTR		"lx"	/* uintptr_t		*/
    188  1.3    matt #else
    189  1.2  kleink #define	PRIxFAST64	"llx"	/* uint_fast64_t	*/
    190  1.1  kleink #define	PRIxMAX		"llx"	/* uintmax_t		*/
    191  1.1  kleink #define	PRIxPTR		"x"	/* uintptr_t		*/
    192  1.3    matt #endif
    193  1.1  kleink 
    194  1.1  kleink #define	PRIX8		"X"	/* uint8_t		*/
    195  1.1  kleink #define	PRIX16		"X"	/* uint16_t		*/
    196  1.1  kleink #define	PRIX32		"X"	/* uint32_t		*/
    197  1.3    matt #ifdef _LP64
    198  1.3    matt #define	PRIX64		"lX"	/* uint64_t		*/
    199  1.3    matt #else
    200  1.1  kleink #define	PRIX64		"llX"	/* uint64_t		*/
    201  1.3    matt #endif
    202  1.1  kleink #define	PRIXLEAST8	"X"	/* uint_least8_t	*/
    203  1.1  kleink #define	PRIXLEAST16	"X"	/* uint_least16_t	*/
    204  1.1  kleink #define	PRIXLEAST32	"X"	/* uint_least32_t	*/
    205  1.3    matt #ifdef _LP64
    206  1.3    matt #define	PRIXLEAST64	"lX"	/* uint_least64_t	*/
    207  1.3    matt #else
    208  1.1  kleink #define	PRIXLEAST64	"llX"	/* uint_least64_t	*/
    209  1.3    matt #endif
    210  1.2  kleink #define	PRIXFAST8	"X"	/* uint_fast8_t		*/
    211  1.2  kleink #define	PRIXFAST16	"X"	/* uint_fast16_t	*/
    212  1.2  kleink #define	PRIXFAST32	"X"	/* uint_fast32_t	*/
    213  1.3    matt #ifdef _LP64
    214  1.3    matt #define	PRIXFAST64	"lX"	/* uint_fast64_t	*/
    215  1.3    matt #define	PRIXMAX		"lX"	/* uintmax_t		*/
    216  1.3    matt #define	PRIXPTR		"lX"	/* uintptr_t		*/
    217  1.3    matt #else
    218  1.2  kleink #define	PRIXFAST64	"llX"	/* uint_fast64_t	*/
    219  1.1  kleink #define	PRIXMAX		"llX"	/* uintmax_t		*/
    220  1.1  kleink #define	PRIXPTR		"X"	/* uintptr_t		*/
    221  1.3    matt #endif
    222  1.1  kleink 
    223  1.1  kleink /* fscanf macros for signed integers */
    224  1.1  kleink 
    225  1.1  kleink #define	SCNd8		"hhd"	/* int8_t		*/
    226  1.1  kleink #define	SCNd16		"hd"	/* int16_t		*/
    227  1.1  kleink #define	SCNd32		"d"	/* int32_t		*/
    228  1.3    matt #ifdef _LP64
    229  1.3    matt #define	SCNd64		"ld"	/* int64_t		*/
    230  1.3    matt #else
    231  1.1  kleink #define	SCNd64		"lld"	/* int64_t		*/
    232  1.3    matt #endif
    233  1.1  kleink #define	SCNdLEAST8	"hhd"	/* int_least8_t		*/
    234  1.1  kleink #define	SCNdLEAST16	"hd"	/* int_least16_t	*/
    235  1.1  kleink #define	SCNdLEAST32	"d"	/* int_least32_t	*/
    236  1.3    matt #ifdef _LP64
    237  1.3    matt #define	SCNdLEAST64	"ld"	/* int_least64_t	*/
    238  1.3    matt #else
    239  1.1  kleink #define	SCNdLEAST64	"lld"	/* int_least64_t	*/
    240  1.3    matt #endif
    241  1.2  kleink #define	SCNdFAST8	"d"	/* int_fast8_t		*/
    242  1.2  kleink #define	SCNdFAST16	"d"	/* int_fast16_t		*/
    243  1.2  kleink #define	SCNdFAST32	"d"	/* int_fast32_t		*/
    244  1.3    matt #ifdef _LP64
    245  1.3    matt #define	SCNdFAST64	"ld"	/* int_fast64_t		*/
    246  1.3    matt #define	SCNdMAX		"ld"	/* intmax_t		*/
    247  1.3    matt #define	SCNdPTR		"ld"	/* intptr_t		*/
    248  1.3    matt #else
    249  1.2  kleink #define	SCNdFAST64	"lld"	/* int_fast64_t		*/
    250  1.1  kleink #define	SCNdMAX		"lld"	/* intmax_t		*/
    251  1.1  kleink #define	SCNdPTR		"d"	/* intptr_t		*/
    252  1.3    matt #endif
    253  1.1  kleink 
    254  1.1  kleink #define	SCNi8		"hhi"	/* int8_t		*/
    255  1.1  kleink #define	SCNi16		"hi"	/* int16_t		*/
    256  1.1  kleink #define	SCNi32		"i"	/* int32_t		*/
    257  1.3    matt #ifdef _LP64
    258  1.3    matt #define	SCNi64		"li"	/* int64_t		*/
    259  1.3    matt #else
    260  1.1  kleink #define	SCNi64		"lli"	/* int64_t		*/
    261  1.3    matt #endif
    262  1.1  kleink #define	SCNiLEAST8	"hhi"	/* int_least8_t		*/
    263  1.1  kleink #define	SCNiLEAST16	"hi"	/* int_least16_t	*/
    264  1.1  kleink #define	SCNiLEAST32	"i"	/* int_least32_t	*/
    265  1.3    matt #ifdef _LP64
    266  1.3    matt #define	SCNiLEAST64	"li"	/* int_least64_t	*/
    267  1.3    matt #else
    268  1.1  kleink #define	SCNiLEAST64	"lli"	/* int_least64_t	*/
    269  1.3    matt #endif
    270  1.2  kleink #define	SCNiFAST8	"i"	/* int_fast8_t		*/
    271  1.2  kleink #define	SCNiFAST16	"i"	/* int_fast16_t		*/
    272  1.2  kleink #define	SCNiFAST32	"i"	/* int_fast32_t		*/
    273  1.3    matt #ifdef _LP64
    274  1.3    matt #define	SCNiFAST64	"li"	/* int_fast64_t		*/
    275  1.3    matt #define	SCNiMAX		"li"	/* intmax_t		*/
    276  1.3    matt #define	SCNiPTR		"li"	/* intptr_t		*/
    277  1.3    matt #else
    278  1.2  kleink #define	SCNiFAST64	"lli"	/* int_fast64_t		*/
    279  1.1  kleink #define	SCNiMAX		"lli"	/* intmax_t		*/
    280  1.1  kleink #define	SCNiPTR		"i"	/* intptr_t		*/
    281  1.3    matt #endif
    282  1.1  kleink 
    283  1.1  kleink /* fscanf macros for unsigned integers */
    284  1.1  kleink 
    285  1.1  kleink #define	SCNo8		"hho"	/* uint8_t		*/
    286  1.1  kleink #define	SCNo16		"ho"	/* uint16_t		*/
    287  1.1  kleink #define	SCNo32		"o"	/* uint32_t		*/
    288  1.3    matt #ifdef _LP64
    289  1.3    matt #define	SCNo64		"lo"	/* uint64_t		*/
    290  1.3    matt #else
    291  1.1  kleink #define	SCNo64		"llo"	/* uint64_t		*/
    292  1.3    matt #endif
    293  1.1  kleink #define	SCNoLEAST8	"hho"	/* uint_least8_t	*/
    294  1.1  kleink #define	SCNoLEAST16	"ho"	/* uint_least16_t	*/
    295  1.1  kleink #define	SCNoLEAST32	"o"	/* uint_least32_t	*/
    296  1.3    matt #ifdef _LP64
    297  1.3    matt #define	SCNoLEAST64	"lo"	/* uint_least64_t	*/
    298  1.3    matt #else
    299  1.1  kleink #define	SCNoLEAST64	"llo"	/* uint_least64_t	*/
    300  1.3    matt #endif
    301  1.2  kleink #define	SCNoFAST8	"o"	/* uint_fast8_t		*/
    302  1.2  kleink #define	SCNoFAST16	"o"	/* uint_fast16_t	*/
    303  1.2  kleink #define	SCNoFAST32	"o"	/* uint_fast32_t	*/
    304  1.3    matt #ifdef _LP64
    305  1.3    matt #define	SCNoFAST64	"lo"	/* uint_fast64_t	*/
    306  1.3    matt #define	SCNoMAX		"lo"	/* uintmax_t		*/
    307  1.3    matt #define	SCNoPTR		"lo"	/* uintptr_t		*/
    308  1.3    matt #else
    309  1.2  kleink #define	SCNoFAST64	"llo"	/* uint_fast64_t	*/
    310  1.1  kleink #define	SCNoMAX		"llo"	/* uintmax_t		*/
    311  1.1  kleink #define	SCNoPTR		"o"	/* uintptr_t		*/
    312  1.3    matt #endif
    313  1.1  kleink 
    314  1.1  kleink #define	SCNu8		"hhu"	/* uint8_t		*/
    315  1.1  kleink #define	SCNu16		"hu"	/* uint16_t		*/
    316  1.1  kleink #define	SCNu32		"u"	/* uint32_t		*/
    317  1.3    matt #ifdef _LP64
    318  1.3    matt #define	SCNu64		"lu"	/* uint64_t		*/
    319  1.3    matt #else
    320  1.1  kleink #define	SCNu64		"llu"	/* uint64_t		*/
    321  1.3    matt #endif
    322  1.1  kleink #define	SCNuLEAST8	"hhu"	/* uint_least8_t	*/
    323  1.1  kleink #define	SCNuLEAST16	"hu"	/* uint_least16_t	*/
    324  1.1  kleink #define	SCNuLEAST32	"u"	/* uint_least32_t	*/
    325  1.3    matt #ifdef _LP64
    326  1.3    matt #define	SCNuLEAST64	"lu"	/* uint_least64_t	*/
    327  1.3    matt #else
    328  1.1  kleink #define	SCNuLEAST64	"llu"	/* uint_least64_t	*/
    329  1.3    matt #endif
    330  1.2  kleink #define	SCNuFAST8	"u"	/* uint_fast8_t		*/
    331  1.2  kleink #define	SCNuFAST16	"u"	/* uint_fast16_t	*/
    332  1.2  kleink #define	SCNuFAST32	"u"	/* uint_fast32_t	*/
    333  1.3    matt #ifdef _LP64
    334  1.3    matt #define	SCNuFAST64	"lu"	/* uint_fast64_t	*/
    335  1.3    matt #define	SCNuMAX		"lu"	/* uintmax_t		*/
    336  1.3    matt #define	SCNuPTR		"lu"	/* uintptr_t		*/
    337  1.3    matt #else
    338  1.2  kleink #define	SCNuFAST64	"llu"	/* uint_fast64_t	*/
    339  1.1  kleink #define	SCNuMAX		"llu"	/* uintmax_t		*/
    340  1.1  kleink #define	SCNuPTR		"u"	/* uintptr_t		*/
    341  1.3    matt #endif
    342  1.1  kleink 
    343  1.1  kleink #define	SCNx8		"hhx"	/* uint8_t		*/
    344  1.1  kleink #define	SCNx16		"hx"	/* uint16_t		*/
    345  1.1  kleink #define	SCNx32		"x"	/* uint32_t		*/
    346  1.3    matt #ifdef _LP64
    347  1.3    matt #define	SCNx64		"lx"	/* uint64_t		*/
    348  1.3    matt #else
    349  1.1  kleink #define	SCNx64		"llx"	/* uint64_t		*/
    350  1.3    matt #endif
    351  1.1  kleink #define	SCNxLEAST8	"hhx"	/* uint_least8_t	*/
    352  1.1  kleink #define	SCNxLEAST16	"hx"	/* uint_least16_t	*/
    353  1.1  kleink #define	SCNxLEAST32	"x"	/* uint_least32_t	*/
    354  1.3    matt #ifdef _LP64
    355  1.3    matt #define	SCNxLEAST64	"lx"	/* uint_least64_t	*/
    356  1.3    matt #else
    357  1.1  kleink #define	SCNxLEAST64	"llx"	/* uint_least64_t	*/
    358  1.3    matt #endif
    359  1.2  kleink #define	SCNxFAST8	"x"	/* uint_fast8_t		*/
    360  1.2  kleink #define	SCNxFAST16	"x"	/* uint_fast16_t	*/
    361  1.2  kleink #define	SCNxFAST32	"x"	/* uint_fast32_t	*/
    362  1.3    matt #ifdef _LP64
    363  1.3    matt #define	SCNxFAST64	"lx"	/* uint_fast64_t	*/
    364  1.3    matt #define	SCNxMAX		"lx"	/* uintmax_t		*/
    365  1.3    matt #define	SCNxPTR		"lx"	/* uintptr_t		*/
    366  1.3    matt #else
    367  1.2  kleink #define	SCNxFAST64	"llx"	/* uint_fast64_t	*/
    368  1.1  kleink #define	SCNxMAX		"llx"	/* uintmax_t		*/
    369  1.1  kleink #define	SCNxPTR		"x"	/* uintptr_t		*/
    370  1.3    matt #endif
    371  1.1  kleink 
    372  1.5    matt #endif /* !__INTPTR_FMTd__ */
    373  1.5    matt 
    374  1.1  kleink #endif /* !_POWERPC_INT_FMTIO_H_ */
    375