Update from gettext 0.14.2.
authorBruno Haible <bruno@clisp.org>
Tue, 1 Mar 2005 15:36:36 +0000 (15:36 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 1 Mar 2005 15:36:36 +0000 (15:36 +0000)
lib/ChangeLog
lib/vasnprintf.c

index 14323952cde2fb444c15c6765038956d0c947979..572319aab5f5d8d11cbf58d30369d128425b2c60 100644 (file)
@@ -1,3 +1,7 @@
+2005-02-12  Bruno Haible  <bruno@clisp.org>
+
+       * vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
+
 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
 
        * gethrxtime.h, gethrxtime.c, xtime.h: New files.
index ff80857305864a2ac93d98d7159af9048a67c7cf..5fc255a2008a084e08f84099d034cdbb8b7aa4b3 100644 (file)
 /* Checked size_t computations.  */
 #include "xsize.h"
 
+/* Some systems, like OSF/1 4.0 and Woe32, don't have EOVERFLOW.  */
+#ifndef EOVERFLOW
+# define EOVERFLOW E2BIG
+#endif
+
 #ifdef HAVE_WCHAR_T
 # ifdef HAVE_WCSLEN
 #  define local_wcslen wcslen