Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 29 Jan 2000 07:44:21 +0000 (07:44 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 29 Jan 2000 07:44:21 +0000 (07:44 +0000)
2000-01-28  Ulrich Drepper  <drepper@redhat.com>

* stdio-common/vfprintf.c [COMPILE_WPRINT] (_i18n_itoa_word,
_i18n_itoa): Fix parameter lists.

ChangeLog
stdio-common/vfprintf.c

index a77bf71..bf60145 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-2000-01-28  Ulrich Drepper  <drepper@cygnus.com>
+2000-01-28  Ulrich Drepper  <drepper@redhat.com>
+
+       * stdio-common/vfprintf.c [COMPILE_WPRINT] (_i18n_itoa_word,
+       _i18n_itoa): Fix parameter lists.
 
        * locale/C-monetary.c: Add initializers for new fields.
        * locale/C-numeric.c: Likewise.
index 9d8785b..d17367f 100644 (file)
 
 #  define _itoa(Val, Buf, Base, Case) _itowa (Val, Buf, Base, Case)
 #  define _itoa_word(Val, Buf, Base, Case) _itowa_word (Val, Buf, Base, Case)
-#  define _i18n_itoa(Val, Buf, Base, Case) _i18n_itowa (Val, Buf, Base, Case)
-#  define _i18n_itoa_word(Val, Buf, Base, Case) \
-  _i18n_itowa_word (Val, Buf, Base, Case)
+#  define _i18n_itoa(Val, Buf) _i18n_itowa (Val, Buf)
+#  define _i18n_itoa_word(Val, Buf) _i18n_itowa_word (Val, Buf)
 #  undef EOF
 #  define EOF WEOF
 # endif