Install json_object_private.h file
[platform/upstream/json-c.git] / json_inttypes.h
1
2 /**
3  * @file
4  * @brief Do not use, json-c internal, may be changed or removed at any time.
5  */
6 #ifndef _json_inttypes_h_
7 #define _json_inttypes_h_
8
9 #include "json_config.h"
10
11 #ifdef JSON_C_HAVE_INTTYPES_H
12 /* inttypes.h includes stdint.h */
13 #include <inttypes.h>
14
15 #else
16 #include <stdint.h>
17
18 #define PRId64 "I64d"
19 #define SCNd64 "I64d"
20
21 #endif
22
23 #endif