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

/*
STDC(199901)
*/