diff --git a/mozilla/modules/zlib/src/ChangeLog.moz b/mozilla/modules/zlib/src/ChangeLog.moz index bee2f16fe94..4544a13466f 100644 --- a/mozilla/modules/zlib/src/ChangeLog.moz +++ b/mozilla/modules/zlib/src/ChangeLog.moz @@ -10,3 +10,6 @@ Mozilla.org changes: - 17 June 2004 Turn off ZLIB_DLL to fix static build bustage + +- 24 June 2004 + do not prototype strerror for VMS in zutil.h diff --git a/mozilla/modules/zlib/src/zutil.h b/mozilla/modules/zlib/src/zutil.h index 31414724ad6..8096ec1d369 100644 --- a/mozilla/modules/zlib/src/zutil.h +++ b/mozilla/modules/zlib/src/zutil.h @@ -8,7 +8,7 @@ subject to change. Applications should only use zlib.h. */ -/* @(#) $Id: zutil.h,v 3.6 2004-06-17 14:33:24 tor%cs.brown.edu Exp $ */ +/* @(#) $Id: zutil.h,v 3.7 2004-06-24 21:12:12 tor%cs.brown.edu Exp $ */ #ifndef ZUTIL_H #define ZUTIL_H @@ -191,7 +191,9 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */ #endif #ifdef HAVE_STRERROR +#ifndef VMS extern char *strerror OF((int)); +#endif # define zstrerror(errnum) strerror(errnum) #else # define zstrerror(errnum) ""