Bernhard Reutner-Fischer 18 years ago
parent
commit
669e7e91fd
1 changed files with 4 additions and 2 deletions
  1. 4 2
      libc/stdio/fputc.c

+ 4 - 2
libc/stdio/fputc.c

@@ -72,9 +72,11 @@ int __fputc_unlocked(int c, register FILE *stream)
 }
 libc_hidden_def(__fputc_unlocked)
 
-libc_hidden_proto(fputc_unlocked)
+/* exposing these would be fundamentally *wrong*! fix you, instead! */
+/* libc_hidden_proto(fputc_unlocked) */
 strong_alias(__fputc_unlocked,fputc_unlocked)
-libc_hidden_def(fputc_unlocked)
+/* exposing these would be fundamentally *wrong*! fix you, instead! */
+/* libc_hidden_def(fputc_unlocked) */
 
 libc_hidden_proto(putc_unlocked)
 strong_alias(__fputc_unlocked,putc_unlocked)