blob: b71bb098816a635f683143fa5a21b899325e3dac [file] [log] [blame]
Michael Clarkc4dceae2010-10-06 16:39:20 +00001
2#ifndef _json_inttypes_h_
3#define _json_inttypes_h_
4
Eric Haszlakiewiczb21b1372012-02-15 20:44:54 -06005#include "json_config.h"
6
Michael Clarkc4dceae2010-10-06 16:39:20 +00007#if defined(_MSC_VER) && _MSC_VER < 1600
8
9/* Anything less than Visual Studio C++ 10 is missing stdint.h and inttypes.h */
John Arbash Meinel6a231e42012-02-01 09:27:49 +010010typedef __int32 int32_t;
11#define INT32_MIN ((int32_t)_I32_MIN)
12#define INT32_MAX ((int32_t)_I32_MAX)
Michael Clarkc4dceae2010-10-06 16:39:20 +000013typedef __int64 int64_t;
14#define PRId64 "I64d"
15#define SCNd64 "I64d"
16
17#else
18
Eric Haszlakiewiczb21b1372012-02-15 20:44:54 -060019#ifdef JSON_C_HAVE_INTTYPES_H
Michael Clarkc4dceae2010-10-06 16:39:20 +000020#include <inttypes.h>
21#endif
22/* inttypes.h includes stdint.h */
23
24#endif
25
26#endif