summaryrefslogtreecommitdiff
path: root/src/inttypes/PRIxPTR.h
blob: 1ff9a6d3470183d0a68262d3e152e89956c7a5bc (plain)
1
2
3
4
5
6
7
8
9
10
#include <inttypes.h>
#if WORD_BIT == 64
#define PRIxPTR                                                            "llx"
#else
#define PRIxPTR                                                             "lx"
#endif

/*
STDC(199901)
*/