zlib 1.2.4.3

This commit is contained in:
Mark Adler
2011-09-09 23:34:38 -07:00
parent 7147f24cd7
commit f4498bea28
24 changed files with 122 additions and 73 deletions

View File

@@ -368,7 +368,7 @@ typedef uLong FAR uLongf;
# include <sys/types.h> /* for off_t */
#endif
#if defined(Z_HAVE_UNISTD_H) || _LARGEFILE64_SOURCE
#if defined(Z_HAVE_UNISTD_H) || defined(_LARGEFILE64_SOURCE)
# include <unistd.h> /* for SEEK_* and off_t */
# ifdef VMS
# include <unixio.h> /* for off_t */
@@ -388,6 +388,12 @@ typedef uLong FAR uLongf;
# define z_off_t long
#endif
#if defined(_LARGEFILE64_SOURCE) && _LFS64_LARGEFILE-0
# define z_off64_t off64_t
#else
# define z_off64_t z_off_t
#endif
#if defined(__OS400__)
# define NO_vsnprintf
#endif