diff options
| author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 18:16:10 +0000 | 
|---|---|---|
| committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-16 18:16:10 +0000 | 
| commit | c0ffa5031a4d798583c874b980d35d2689f6160f (patch) | |
| tree | b529d5de6e32abc9542d4a0838eecae2d61ca545 /libc | |
| parent | d629e57d62d610f5f82d5d0bed7b6191c50fc106 (diff) | |
Forgot about the macros ;-(
Diffstat (limited to 'libc')
| -rw-r--r-- | libc/stdio/fgetc.c | 2 | ||||
| -rw-r--r-- | libc/stdio/fputc.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/libc/stdio/fgetc.c b/libc/stdio/fgetc.c index 7135848b3..d83b6c92a 100644 --- a/libc/stdio/fgetc.c +++ b/libc/stdio/fgetc.c @@ -69,7 +69,7 @@ int attribute_hidden __fgetc_unlocked_internal(FILE *stream)  	return EOF;  } -hidden_strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked) +strong_alias(__fgetc_unlocked_internal,__fgetc_unlocked)  weak_alias(__fgetc_unlocked_internal,fgetc_unlocked)  hidden_strong_alias(__fgetc_unlocked_internal,__getc_unlocked)  weak_alias(__fgetc_unlocked_internal,getc_unlocked) diff --git a/libc/stdio/fputc.c b/libc/stdio/fputc.c index 611d16cc0..4cc396e08 100644 --- a/libc/stdio/fputc.c +++ b/libc/stdio/fputc.c @@ -69,7 +69,7 @@ int attribute_hidden __fputc_unlocked_internal(int c, register FILE *stream)  	return EOF;  } -hidden_strong_alias(__fputc_unlocked_internal,__fputc_unlocked) +strong_alias(__fputc_unlocked_internal,__fputc_unlocked)  weak_alias(__fputc_unlocked_internal,fputc_unlocked)  weak_alias(__fputc_unlocked_internal,putc_unlocked)  #ifndef __UCLIBC_HAS_THREADS__ | 
