diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:33 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:33 -0700 |
commit | 0484693e1723bbab791c56f95597bd7dbe867d03 (patch) | |
tree | 8f31dbed98b4390da74a90b484f2accf8f8a3a8e /zutil.c | |
parent | 9811b53dd9e8f67015c7199fff12b5bfc6965330 (diff) | |
download | zlib-0484693e1723bbab791c56f95597bd7dbe867d03.tar.gz zlib-0484693e1723bbab791c56f95597bd7dbe867d03.tar.bz2 zlib-0484693e1723bbab791c56f95597bd7dbe867d03.zip |
zlib 1.2.2.2v1.2.2.2
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -137,7 +137,10 @@ const char * ZEXPORT zError(err) | |||
137 | } | 137 | } |
138 | 138 | ||
139 | #if defined(_WIN32_WCE) | 139 | #if defined(_WIN32_WCE) |
140 | /* does not exist on WCE */ | 140 | /* The Microsoft C Run-Time Library for Windows CE doesn't have |
141 | * errno. We define it as a global variable to simplify porting. | ||
142 | * Its value is always 0 and should not be used. | ||
143 | */ | ||
141 | int errno = 0; | 144 | int errno = 0; |
142 | #endif | 145 | #endif |
143 | 146 | ||