mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
0d44815bf5
git-svn-id: file:///svn/toku/tokudb.1032b@7778 c7de825b-a66e-492c-adef-691d508d4ae1
13 lines
197 B
C
13 lines
197 B
C
#ifndef _INTTYPES_H
|
|
#define _INTTYPES_H
|
|
|
|
#include <stdint.h>
|
|
|
|
//Define printf types.
|
|
#define PRId64 "I64d"
|
|
#define PRIu64 "I64u"
|
|
#define PRIx64 "I64x"
|
|
#define PRId32 "d"
|
|
#define PRIu32 "u"
|
|
|
|
#endif
|