From 0eb904a89cbd1b5fc61cd9fedbf737c55fcaa303 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 14 Mar 2011 22:59:44 +0100 Subject: fputc.c, stdio.h: no need for hidden putc, putc_unlocked and fputc_unlocked Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/stdio/fputc.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libc/stdio') diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index b49f868f1..7876d77af 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -72,16 +72,13 @@ int __fputc_unlocked(int c, register FILE *stream) libc_hidden_def(__fputc_unlocked) strong_alias(__fputc_unlocked,fputc_unlocked) -libc_hidden_def(fputc_unlocked) strong_alias(__fputc_unlocked,putc_unlocked) -libc_hidden_def(putc_unlocked) #ifndef __UCLIBC_HAS_THREADS__ strong_alias(__fputc_unlocked,fputc) libc_hidden_def(fputc) strong_alias(__fputc_unlocked,putc) -libc_hidden_def(putc) #endif #elif defined __UCLIBC_HAS_THREADS__ @@ -101,6 +98,5 @@ int fputc(int c, register FILE *stream) libc_hidden_def(fputc) strong_alias(fputc,putc) -libc_hidden_def(putc) #endif -- cgit v1.2.3