]> git.lizzy.rs Git - zlib.git/commitdiff
Update use of errno for newer Windows CE versions.
authorMark Adler <madler@alumni.caltech.edu>
Sun, 12 Feb 2017 06:48:31 +0000 (22:48 -0800)
committerMark Adler <madler@alumni.caltech.edu>
Thu, 16 Feb 2017 06:39:26 +0000 (22:39 -0800)
zutil.c

diff --git a/zutil.c b/zutil.c
index a76c6b0c7e557f8c29cfcf58a5ef9ef79c5e4e8a..dcab28a0d5177a5f9c051cf33b11b257e9c1c7fe 100644 (file)
--- 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.
      */