fix windows build for once

This commit is contained in:
tildearrow 2021-05-28 15:25:55 -05:00
parent cb6f058389
commit 2d3580a05c
262 changed files with 76249 additions and 22 deletions

View file

@ -9,4 +9,9 @@ typedef std::string String;
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#ifdef _MSC_VER
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;
#endif
#endif