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

/*
STDC(199901)
*/