diff options
Diffstat (limited to 'src/inttypes/PRIuPTR.c')
-rw-r--r-- | src/inttypes/PRIuPTR.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/inttypes/PRIuPTR.c b/src/inttypes/PRIuPTR.c new file mode 100644 index 00000000..23c8ab1f --- /dev/null +++ b/src/inttypes/PRIuPTR.c @@ -0,0 +1,10 @@ +#include <inttypes.h> +#if WORD_BIT == 64 +#define PRIuPTR "llu" +#else +#define PRIuPTR "lu" +#endif + +/* +STDC(199901) +*/ |