From b0466b626be8075280ac69b6d63fe747955357e0 Mon Sep 17 00:00:00 2001 From: Eric Haszlakiewicz Date: Sun, 7 Jun 2020 03:27:13 +0000 Subject: [PATCH] On MSVC, add a ssize_t typedef using SSIZE_T from BaseTsd.h --- json_inttypes.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/json_inttypes.h b/json_inttypes.h index e047d4f1..e51da743 100644 --- a/json_inttypes.h +++ b/json_inttypes.h @@ -21,4 +21,9 @@ #endif +#ifdef _MSC_VER +#include +typedef SSIZE_T ssize_t; +#endif + #endif -- 2.47.2