From e1f1a3a1469c91b15ea1d31f1c2b92bdc27879fa Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sat, 11 Feb 2017 22:48:31 -0800 Subject: [PATCH] Update use of errno for newer Windows CE versions. --- zutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zutil.c b/zutil.c index a76c6b0..dcab28a 100644 --- a/zutil.c +++ b/zutil.c @@ -136,8 +136,8 @@ const char * ZEXPORT zError(err) return ERR_MSG(err); } -#if defined(_WIN32_WCE) - /* The Microsoft C Run-Time Library for Windows CE doesn't have +#if defined(_WIN32_WCE) && _WIN32_WCE < 0x800 + /* The older Microsoft C Run-Time Library for Windows CE doesn't have * errno. We define it as a global variable to simplify porting. * Its value is always 0 and should not be used. */