diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-14 17:03:18 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-04-14 17:03:18 +0000 |
commit | 669e7e91fd2fbb258d3c0f5979cd4aff205769ff (patch) | |
tree | ca4c8d958aa819f13e859b96f5756e42fb396631 /libc | |
parent | 1db7c76a0c626f8fcd7208078865781705366a5e (diff) |
- dtrt
Diffstat (limited to 'libc')
-rw-r--r-- | libc/stdio/fputc.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index fd688342e..aaaeb5f34 100644 --- a/libc/stdio/fputc.c +++ b/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) |