diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-23 18:47:36 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-23 18:47:36 +0000 |
commit | b7a34690482d70c1b46a8fb166e3c575a00f5b68 (patch) | |
tree | af7eb7bf67677fae58b243d4e9d57f572cd3ae88 | |
parent | ba3b529ac84695b274c09707a8e55082baf9e499 (diff) |
- for non-threaded, non-macro case we were missing __GI_fputc (for e.g. error.c)
-rw-r--r-- | libc/stdio/fputc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index aaaeb5f34..ac3b23ec5 100644 --- a/libc/stdio/fputc.c +++ b/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) |