浏览代码

Forgot about the macros ;-(

Peter S. Mazinger 19 年之前
父节点
当前提交
c0ffa5031a
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      libc/stdio/fgetc.c
  2. 1 1
      libc/stdio/fputc.c

+ 1 - 1
libc/stdio/fgetc.c

@@ -69,7 +69,7 @@ int attribute_hidden __fgetc_unlocked_internal(FILE *stream)
 	return EOF;
 	return EOF;
 }
 }
 
 
-hidden_strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked)
+strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked)
 weak_alias(__fgetc_unlocked_internal,fgetc_unlocked)
 weak_alias(__fgetc_unlocked_internal,fgetc_unlocked)
 hidden_strong_alias(__fgetc_unlocked_internal,__getc_unlocked)
 hidden_strong_alias(__fgetc_unlocked_internal,__getc_unlocked)
 weak_alias(__fgetc_unlocked_internal,getc_unlocked)
 weak_alias(__fgetc_unlocked_internal,getc_unlocked)

+ 1 - 1
libc/stdio/fputc.c

@@ -69,7 +69,7 @@ int attribute_hidden __fputc_unlocked_internal(int c, register FILE *stream)
 	return EOF;
 	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,fputc_unlocked)
 weak_alias(__fputc_unlocked_internal,putc_unlocked)
 weak_alias(__fputc_unlocked_internal,putc_unlocked)
 #ifndef __UCLIBC_HAS_THREADS__
 #ifndef __UCLIBC_HAS_THREADS__