mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
580f5caafb
git-svn-id: file:///svn/toku/tokudb@15562 c7de825b-a66e-492c-adef-691d508d4ae1
16 lines
257 B
C
16 lines
257 B
C
#ifndef _INTTYPES_H
|
|
#define _INTTYPES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
//Define printf types.
|
|
#define PRId64 "I64d"
|
|
#define PRIu64 "I64u"
|
|
#define PRIx64 "I64x"
|
|
#define PRIX64 "I64X"
|
|
#define PRId32 "d"
|
|
#define PRIu32 "u"
|
|
#define PRIx32 "x"
|
|
#define PRIX32 "X"
|
|
|
|
#endif
|