1 #ifndef JEMALLOC_INTERNAL_OS_POSIX_FMT_H 2 #define JEMALLOC_INTERNAL_OS_POSIX_FMT_H 3 4 #include <inttypes.h> 5 6 #define FMTd32 PRId32 7 #define FMTu32 PRIu32 8 #define FMTx32 PRIx32 9 #define FMTd64 PRId64 10 #define FMTu64 PRIu64 11 #define FMTx64 PRIx64 12 #define FMTdPTR PRIdPTR 13 #define FMTuPTR PRIuPTR 14 #define FMTxPTR PRIxPTR 15 16 #endif /* JEMALLOC_INTERNAL_OS_POSIX_FMT_H */ 17