From 84e9d52d7fce8360060c92d9de6e30576d91a063 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 17 Jan 2022 17:44:17 -0500 Subject: [PATCH] Microsoft C compiler compatibility unsupported and not recommended! --- src/ta-utils.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ta-utils.h b/src/ta-utils.h index 264f6745c..5035b3916 100644 --- a/src/ta-utils.h +++ b/src/ta-utils.h @@ -4,6 +4,11 @@ #include #include +#ifdef _MSC_VER +#include +typedef SSIZE_T ssize_t; +#endif + typedef std::string String; #define MIN(a,b) (((a)<(b))?(a):(b))