mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
14 lines
197 B
C
14 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
|