Skip to content
Snippets Groups Projects
Commit e1f1a3a1 authored by Mark Adler's avatar Mark Adler
Browse files

Update use of errno for newer Windows CE versions.

parent 793ad7f5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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.
*/
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment