diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:43 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:24:43 -0700 |
commit | 6b8233bfe00e79134cb1b84fc49d4f750a797f79 (patch) | |
tree | ca2b03b0169568681dc3d9c823e9f0bc4417d6b5 /zutil.h | |
parent | 0484693e1723bbab791c56f95597bd7dbe867d03 (diff) | |
download | zlib-6b8233bfe00e79134cb1b84fc49d4f750a797f79.tar.gz zlib-6b8233bfe00e79134cb1b84fc49d4f750a797f79.tar.bz2 zlib-6b8233bfe00e79134cb1b84fc49d4f750a797f79.zip |
zlib 1.2.2.3v1.2.2.3
Diffstat (limited to 'zutil.h')
-rw-r--r-- | zutil.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* zutil.h -- internal interface and configuration of the compression library | 1 | /* zutil.h -- internal interface and configuration of the compression library |
2 | * Copyright (C) 1995-2004 Jean-loup Gailly. | 2 | * Copyright (C) 1995-2005 Jean-loup Gailly. |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
@@ -17,7 +17,9 @@ | |||
17 | #include "zlib.h" | 17 | #include "zlib.h" |
18 | 18 | ||
19 | #ifdef STDC | 19 | #ifdef STDC |
20 | # include <stddef.h> | 20 | # ifndef _WIN32_WCE |
21 | # include <stddef.h> | ||
22 | # endif | ||
21 | # include <string.h> | 23 | # include <string.h> |
22 | # include <stdlib.h> | 24 | # include <stdlib.h> |
23 | #endif | 25 | #endif |
@@ -32,7 +34,9 @@ | |||
32 | # endif | 34 | # endif |
33 | extern int errno; | 35 | extern int errno; |
34 | #else | 36 | #else |
35 | # include <errno.h> | 37 | # ifndef _WIN32_WCE |
38 | # include <errno.h> | ||
39 | # endif | ||
36 | #endif | 40 | #endif |
37 | 41 | ||
38 | #ifndef local | 42 | #ifndef local |