9 lines
121 B
C
9 lines
121 B
C
|
|
#ifndef INTTYPES_H
|
||
|
|
#define INTTYPES_H
|
||
|
|
|
||
|
|
#define PRId64 "ld"
|
||
|
|
#define PRIu64 "lu"
|
||
|
|
#define PRIuPTR "lu"
|
||
|
|
|
||
|
|
#endif //INTTYPES_H
|