diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-23 10:47:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-23 10:47:33 +0000 |
commit | 1cc2b04ed7932364d53baf58d0730acbaa1b4bb7 (patch) | |
tree | e6c3e9dea43f574ac8c7fcf1f0a2a76b6db3d65c | |
parent | 50fc48c54691e9119bfdc083ff8a7b9c3247c00e (diff) | |
download | glibc-1cc2b04ed7932364d53baf58d0730acbaa1b4bb7.zip glibc-1cc2b04ed7932364d53baf58d0730acbaa1b4bb7.tar.gz glibc-1cc2b04ed7932364d53baf58d0730acbaa1b4bb7.tar.bz2 |
Update.
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
* stdio/fputc.c: Don't define alias if fputc is defined as a
macro.
* stdio/putc.c: Define weak alias here since it is not done
anymore in fputc.c.
1999-06-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* assert/assert.h: Don't produce `defined' as part of macro
expansion.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | stdio/putc.c | 1 |
2 files changed, 13 insertions, 0 deletions
@@ -1,3 +1,15 @@ +1999-06-23 Ulrich Drepper <drepper@cygnus.com> + + * stdio/fputc.c: Don't define alias if fputc is defined as a + macro. + * stdio/putc.c: Define weak alias here since it is not done + anymore in fputc.c. + +1999-06-23 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> + + * assert/assert.h: Don't produce `defined' as part of macro + expansion. + 1999-06-23 Roland McGrath <roland@baalperazim.frob.com> * sysdeps/mach/hurd/read.c (__libc_read): Just call __pread with diff --git a/stdio/putc.c b/stdio/putc.c index f92ef30..f35f977 100644 --- a/stdio/putc.c +++ b/stdio/putc.c @@ -3,3 +3,4 @@ #define fputc putc #define fputc_unlocked putc_unlocked #include <fputc.c> +weak_alias (putc, putc_unlocked) |