about summary refs log tree commit diff
path: root/libio/iofputs_u.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/iofputs_u.c')
-rw-r--r--libio/iofputs_u.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/libio/iofputs_u.c b/libio/iofputs_u.c
index 6f79838eae..f823686d5b 100644
--- a/libio/iofputs_u.c
+++ b/libio/iofputs_u.c
@@ -29,7 +29,7 @@
 #include <string.h>
 
 int
-fputs_unlocked (str, fp)
+__fputs_unlocked (str, fp)
       const char *str;
       _IO_FILE *fp;
 {
@@ -40,4 +40,6 @@ fputs_unlocked (str, fp)
     result = 1;
   return result;
 }
-libc_hidden_def (fputs_unlocked)
+libc_hidden_def (__fputs_unlocked)
+weak_alias (__fputs_unlocked, fputs_unlocked)
+libc_hidden_weak (fputs_unlocked)