]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add hidden alias for fflush.
authorAndreas Schwab <schwab@redhat.com>
Tue, 1 Sep 2009 22:31:09 +0000 (15:31 -0700)
committerUlrich Drepper <drepper@redhat.com>
Tue, 1 Sep 2009 22:31:09 +0000 (15:31 -0700)
ChangeLog
include/stdio.h
libio/iofflush.c

index b4e6966f7400c5849f9178e0fbb594256837aab2..2f7f799a8b15a16a8de4ccf2d5ced8d76c0ab230 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,8 +1,13 @@
+2009-09-01  Andreas Schwab  <schwab@redhat.com>
+
+       * include/stdio.h: Declare hidden proto for fflush.
+       * libio/iofflush.c: Add hidden weak alias for fflush.
+
 2009-09-01  Jakub Jelinek  <jakub@redhat.com>
 
        * sysdeps/x86_64/fpu/bits/mathinline.h: Include bits/wordsize.h.
        (__signbitf, __signbit): Only use SSE inline asm for 64-bit.
-               
+
 2009-08-31  Andreas Schwab  <schwab@redhat.com>
 
        * sysdeps/x86_64/fpu/bits/mathinline.h: Use __asm instead of asm.
index a8aab92aef37fed78cacfed4e2b9731a649c8ab6..444aa39006a30412ea40b1c58f5606854a415039 100644 (file)
@@ -148,6 +148,7 @@ libc_hidden_proto (fileno)
 libc_hidden_proto (fwrite)
 libc_hidden_proto (fseek)
 libc_hidden_proto (ftello)
+libc_hidden_proto (fflush)
 libc_hidden_proto (fflush_unlocked)
 libc_hidden_proto (fread_unlocked)
 libc_hidden_proto (fwrite_unlocked)
index d2d57f57e0f84aea1349ac243f4119c4a63d6403..3294276b2875a6d2cc69fe56a8c5357bc5925106 100644 (file)
@@ -49,6 +49,7 @@ INTDEF(_IO_fflush)
 
 #ifdef weak_alias
 weak_alias (_IO_fflush, fflush)
+libc_hidden_weak (fflush)
 
 #ifndef _IO_MTSAFE_IO
 weak_alias (_IO_fflush, fflush_unlocked)