OSDN Git Service

Forgot about the macros ;-(
authorPeter S. Mazinger <ps.m@gmx.net>
Fri, 16 Dec 2005 18:16:10 +0000 (18:16 -0000)
committerPeter S. Mazinger <ps.m@gmx.net>
Fri, 16 Dec 2005 18:16:10 +0000 (18:16 -0000)
libc/stdio/fgetc.c
libc/stdio/fputc.c

index 7135848..d83b6c9 100644 (file)
@@ -69,7 +69,7 @@ int attribute_hidden __fgetc_unlocked_internal(FILE *stream)
        return EOF;
 }
 
-hidden_strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked)
+strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked)
 weak_alias(__fgetc_unlocked_internal,fgetc_unlocked)
 hidden_strong_alias(__fgetc_unlocked_internal,__getc_unlocked)
 weak_alias(__fgetc_unlocked_internal,getc_unlocked)
index 611d16c..4cc396e 100644 (file)
@@ -69,7 +69,7 @@ int attribute_hidden __fputc_unlocked_internal(int c, register FILE *stream)
        return EOF;
 }
 
-hidden_strong_alias(__fputc_unlocked_internal,__fputc_unlocked)
+strong_alias(__fputc_unlocked_internal,__fputc_unlocked)
 weak_alias(__fputc_unlocked_internal,fputc_unlocked)
 weak_alias(__fputc_unlocked_internal,putc_unlocked)
 #ifndef __UCLIBC_HAS_THREADS__