diff options
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 |