summaryrefslogtreecommitdiff
path: root/src/inttypes/PRIuPTR.h
blob: 23c8ab1f6ba3c794e1311e9b34ac35192ebed6ed (plain)
1
2
3
4
5
6
7
8
9
10
#include <inttypes.h>
#if WORD_BIT == 64
#define PRIuPTR                                                            "llu"
#else
#define PRIuPTR                                                             "lu"
#endif

/*
STDC(199901)
*/