2010-10-06 16:39:20 +00:00
|
|
|
|
2017-12-06 00:20:59 -05:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Do not use, json-c internal, may be changed or removed at any time.
|
|
|
|
|
*/
|
2010-10-06 16:39:20 +00:00
|
|
|
#ifndef _json_inttypes_h_
|
|
|
|
|
#define _json_inttypes_h_
|
|
|
|
|
|
2012-02-15 20:44:54 -06:00
|
|
|
#include "json_config.h"
|
|
|
|
|
|
2015-02-05 15:58:12 +00:00
|
|
|
#ifdef JSON_C_HAVE_INTTYPES_H
|
|
|
|
|
/* inttypes.h includes stdint.h */
|
|
|
|
|
#include <inttypes.h>
|
2010-10-06 16:39:20 +00:00
|
|
|
|
|
|
|
|
#else
|
2015-02-05 15:58:12 +00:00
|
|
|
#include <stdint.h>
|
2010-10-06 16:39:20 +00:00
|
|
|
|
2015-02-05 15:58:12 +00:00
|
|
|
#define PRId64 "I64d"
|
|
|
|
|
#define SCNd64 "I64d"
|
2010-10-06 16:39:20 +00:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|