PR #679: add workaround for old compilers w/o stdint.h (i.e. VS2008 and earlier)

This commit is contained in:
Eric Hawicz
2023-08-05 22:11:30 -04:00
parent 0bcfb6bc84
commit 1ee12100b6
3 changed files with 18 additions and 4 deletions

View File

@@ -13,7 +13,15 @@
#include <inttypes.h>
#else
#ifdef JSON_C_HAVE_STDINT_H
#include <stdint.h>
#else
/* Really only valid for old MS compilers, VS2008 and earlier: */
typedef __int32 int32_t;
typedef unsigned __int32 uint32_t;
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#endif
#define PRId64 "I64d"
#define SCNd64 "I64d"