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