summaryrefslogtreecommitdiff
path: root/zutil.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:27 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:23:27 -0700
commit7a33a861d1526894272a8a4b08527ce32316d750 (patch)
tree3611b8e0f01c20f809015f30fba0a599daf1413b /zutil.h
parenta2506218cd8c32416d0d15260834f3c23d910fc8 (diff)
downloadzlib-1.2.1.tar.gz
zlib-1.2.1.tar.bz2
zlib-1.2.1.zip
zlib 1.2.1v1.2.1
Diffstat (limited to 'zutil.h')
-rw-r--r--zutil.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/zutil.h b/zutil.h
index c2c98d9..87b70ac 100644
--- a/zutil.h
+++ b/zutil.h
@@ -139,6 +139,10 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
139#if (defined(_MSC_VER) && (_MSC_VER > 600)) 139#if (defined(_MSC_VER) && (_MSC_VER > 600))
140# if defined(_WIN32_WCE) 140# if defined(_WIN32_WCE)
141# define fdopen(fd,mode) NULL /* No fdopen() */ 141# define fdopen(fd,mode) NULL /* No fdopen() */
142# ifndef _PTRDIFF_T_DEFINED
143 typedef int ptrdiff_t;
144# define _PTRDIFF_T_DEFINED
145# endif
142# else 146# else
143# define fdopen(fd,type) _fdopen(fd,type) 147# define fdopen(fd,type) _fdopen(fd,type)
144# endif 148# endif