]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Fri, 18 Jun 1999 18:08:15 +0000 (18:08 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 18 Jun 1999 18:08:15 +0000 (18:08 +0000)
* libio/libioP.h (FILEBUF_LITERAL): Add missing parameter to macro
definitions.

ChangeLog
libio/libioP.h

index acf9b74ef2f34329234d939b2d86a0736a4e4596..941aae6e08b2ab8afcff149f998d06e496fc3f4e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-06-18  Ulrich Drepper  <drepper@cygnus.com>
 
+       * libio/libioP.h (FILEBUF_LITERAL): Add missing parameter to macro
+       definitions.
+
        * sysdeps/unix/sysv/linux/init-first.h: Add extra cast in argc
        assignment to avoid warning on 64bit platforms.
 
index 6ed79b7169f36a30d88c359f4ff9b3e0d79b64dc..775f44588c52d15556d0a904056748ca7fc6efc6 100644 (file)
@@ -657,11 +657,11 @@ extern int _IO_vscanf __P ((const char *, _IO_va_list));
 # endif
 #else
 # ifdef _IO_USE_OLD_IO_FILE
-#  define FILEBUF_LITERAL(CHAIN, FLAGS, FD) \
+#  define FILEBUF_LITERAL(CHAIN, FLAGS, FD, WDP) \
        { _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+FLAGS, \
           0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD, 0, _IO_pos_BAD }
 # else
-#  define FILEBUF_LITERAL(CHAIN, FLAGS, FD) \
+#  define FILEBUF_LITERAL(CHAIN, FLAGS, FD, WDP) \
        { _IO_MAGIC+_IO_LINKED+_IO_IS_FILEBUF+FLAGS, \
          0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, CHAIN, FD, \
         0, _IO_pos_BAD, 0, 0, { 0 }, 0, _IO_pos_BAD, \