From 73c2a52eb866f0e0ff25c655e7f68e40ca8b0848 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Wed, 6 Mar 2024 16:51:11 -0500 Subject: [PATCH] Try another Windows fix. --- mxml.h | 1 + 1 file changed, 1 insertion(+) diff --git a/mxml.h b/mxml.h index 916afb2..d5e405d 100644 --- a/mxml.h +++ b/mxml.h @@ -20,6 +20,7 @@ # include # if defined(_WIN32) && !defined(__CUPS_SSIZE_T_DEFINED) # define __CUPS_SSIZE_T_DEFINED +# include // Windows does not provide the ssize_t type, so map it to int64_t... */ typedef int64_t ssize_t; // @private@ # define SSIZE_MAX INT64_MAX