Clean up the addition of gzvprintf.

This commit is contained in:
Mark Adler 2013-03-23 23:47:15 -07:00
parent f0546c8e34
commit 0aac8cf7c4
10 changed files with 13 additions and 3 deletions

View File

@ -140,3 +140,4 @@ EXPORTS
; zlib1 v1.2.8 added:
inflateGetDictionary @166
gzvprintf @167

View File

@ -140,3 +140,4 @@ EXPORTS
; zlib1 v1.2.8 added:
inflateGetDictionary @166
gzvprintf @167

View File

@ -140,3 +140,4 @@ EXPORTS
; zlib1 v1.2.8 added:
inflateGetDictionary @166
gzvprintf @167

View File

@ -140,3 +140,4 @@ EXPORTS
; zlib1 v1.2.8 added:
inflateGetDictionary @166
gzvprintf @167

View File

@ -40,6 +40,7 @@ EXPORTS
gzread
gzwrite
gzprintf
gzvprintf
gzputs
gzgets
gzputc

View File

@ -78,6 +78,7 @@
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzvprintf z_gzvprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
# define gzread z_gzread

View File

@ -80,6 +80,7 @@
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzvprintf z_gzvprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
# define gzread z_gzread

View File

@ -78,6 +78,7 @@
# define gzopen_w z_gzopen_w
# endif
# define gzprintf z_gzprintf
# define gzvprintf z_gzvprintf
# define gzputc z_gzputc
# define gzputs z_gzputs
# define gzread z_gzread

5
zlib.h
View File

@ -1755,8 +1755,9 @@ ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path,
#endif
#if defined(STDC) || defined(Z_HAVE_STDARG_H)
# ifndef Z_SOLO
ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file, const char *format,
va_list va));
ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file,
const char *format,
va_list va));
# endif
#endif

View File

@ -79,4 +79,5 @@ ZLIB_1.2.5.2 {
ZLIB_1.2.7.1 {
inflateGetDictionary;
} ZLIB_1.2.7;
gzvprintf;
} ZLIB_1.2.5.2;