Update use of errno for newer Windows CE versions.

This commit is contained in:
Mark Adler 2017-02-11 22:48:31 -08:00
parent 793ad7f559
commit e1f1a3a146
1 changed files with 2 additions and 2 deletions

View File

@ -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.
*/