diff options
author | unknown <serg@serg.mylan> | 2005-03-23 21:08:13 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-03-23 21:08:13 +0100 |
commit | d4285cae162fed7e170507f10eff9cec3b240a6d (patch) | |
tree | 9defb6fc4bb5a6c4a12f100e1c2644a098e81253 /zlib/zutil.h | |
parent | 58aeecb078023ea64c40d8fe2af74a756b759ea2 (diff) | |
download | mariadb-git-d4285cae162fed7e170507f10eff9cec3b240a6d.tar.gz |
upgrade zlib to 1.2.2
acinclude.m4:
clarify help text
Diffstat (limited to 'zlib/zutil.h')
-rw-r--r-- | zlib/zutil.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/zlib/zutil.h b/zlib/zutil.h index 87b70acec23..7b42edcaa98 100644 --- a/zlib/zutil.h +++ b/zlib/zutil.h @@ -189,9 +189,14 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ # define NO_vsnprintf # endif #endif +#ifdef VMS +# define NO_vsnprintf +#endif #ifdef HAVE_STRERROR - extern char *strerror OF((int)); +# ifndef VMS + extern char *strerror OF((int)); +# endif # define zstrerror(errnum) strerror(errnum) #else # define zstrerror(errnum) "" |