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