Browse Source

- for non-threaded, non-macro case we were missing __GI_fputc (for e.g. error.c)

Bernhard Reutner-Fischer 17 years ago
parent
commit
b7a3469048
1 changed files with 2 additions and 0 deletions
  1. 2 0
      libc/stdio/fputc.c

+ 2 - 0
libc/stdio/fputc.c

@@ -82,7 +82,9 @@ libc_hidden_proto(putc_unlocked)
 strong_alias(__fputc_unlocked,putc_unlocked)
 libc_hidden_def(putc_unlocked)
 #ifndef __UCLIBC_HAS_THREADS__
+libc_hidden_proto(fputc)
 strong_alias(__fputc_unlocked,fputc)
+libc_hidden_def(fputc)
 
 libc_hidden_proto(putc)
 strong_alias(__fputc_unlocked,putc)