diff options
author | kientzle <kientzle@FreeBSD.org> | 2005-04-24 17:11:32 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2005-04-24 17:11:32 +0000 |
commit | dcdd7970c32e380f850172d84335e45a41b37de8 (patch) | |
tree | c8863f4aa466b3a3ae0c692932613e378ffcbdd5 /lib/libz/zutil.h | |
parent | 3178c167b530f4b9957d9cc1e8972feb3f876690 (diff) | |
download | FreeBSD-src-dcdd7970c32e380f850172d84335e45a41b37de8.zip FreeBSD-src-dcdd7970c32e380f850172d84335e45a41b37de8.tar.gz |
ZLib 1.2.2
Diffstat (limited to 'lib/libz/zutil.h')
-rw-r--r-- | lib/libz/zutil.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/libz/zutil.h b/lib/libz/zutil.h index 87b70ac..7b42edca 100644 --- a/lib/libz/zutil.h +++ b/lib/libz/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) "" |