diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-30 04:49:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-30 04:49:04 +0000 |
commit | b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f (patch) | |
tree | c0d530cc474670cb87d95f404c577ca4e6a2a25a /stdio-common/snprintf.c | |
parent | b7843ea9ff56cd1e941abf9fab7c9c8c4e7dde69 (diff) | |
download | glibc-b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f.tar glibc-b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f.tar.gz glibc-b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f.tar.bz2 glibc-b2518f55c0bce9b3f32551c2a0e4addcaeac7b0f.zip |
Wed Nov 29 12:30:50 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>cvs/libc-951130
* libio/vsnprintf.c (__vsnprintf): Define as alias.
* libio/iovsscanf.c (__vsscanf): Define as alias.
* asprintf.c: Remove libio adaptation code added by drepper.
* dprintf.c: Likewise.
* printf.c: Likewise.
* scanf.c: Likewise.
* snprintf.c: Likewise.
* sprintf.c: Likewise.
* sscanf.c: Likewise.
* vprintf.c: Likewise.
* stdio-common/vfscanf.c [USE_IN_LIBIO] (__vfscanf): New wrapper
function.
(vfscanf): Define unconditionally.
* sysdeps/i386/dl-machine.h (elf_machine_rel): If SYM is null, use
zero for value.
* misc/getpass.c: Write a newline after reading the unechoed
password.
Diffstat (limited to 'stdio-common/snprintf.c')
-rw-r--r-- | stdio-common/snprintf.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/stdio-common/snprintf.c b/stdio-common/snprintf.c index ca0b60aed6..e4f8e1e193 100644 --- a/stdio-common/snprintf.c +++ b/stdio-common/snprintf.c @@ -19,11 +19,6 @@ Cambridge, MA 02139, USA. */ #include <stdarg.h> #include <stdio.h> -#ifdef USE_IN_LIBIO -# include <libioP.h> -# define __vsnprintf _IO_vsnprintf -#endif - /* Write formatted output into S, according to the format string FORMAT, writing no more than MAXLEN characters. */ /* VARARGS3 */ |