diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/asprintf.c | 4 | ||||
-rw-r--r-- | stdio-common/dprintf.c | 6 | ||||
-rw-r--r-- | stdio-common/getw.c | 5 | ||||
-rw-r--r-- | stdio-common/putw.c | 5 | ||||
-rw-r--r-- | stdio-common/snprintf.c | 6 | ||||
-rw-r--r-- | stdio-common/sprintf.c | 6 | ||||
-rw-r--r-- | stdio-common/sscanf.c | 6 |
7 files changed, 32 insertions, 6 deletions
diff --git a/stdio-common/asprintf.c b/stdio-common/asprintf.c index bfc4d215a2..56c49de4e1 100644 --- a/stdio-common/asprintf.c +++ b/stdio-common/asprintf.c @@ -19,6 +19,10 @@ #include <stdarg.h> #include <stdio.h> +#ifdef USE_IN_LIBIO +# define vasprintf(s, f, a) _IO_vasprintf (s, f, a) +#endif + /* Write formatted output from FORMAT to a string which is allocated with malloc and stored in *STRING_PTR. */ /* VARARGS2 */ diff --git a/stdio-common/dprintf.c b/stdio-common/dprintf.c index 0aa12d9dfc..eddaea8cf8 100644 --- a/stdio-common/dprintf.c +++ b/stdio-common/dprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,10 @@ #include <stdarg.h> #include <stdio.h> +#ifdef USE_IN_LIBIO +# define vdprintf(d, f, a) _IO_vdprintf (d, f, a) +#endif + /* Write formatted output to D, according to the format string FORMAT. */ /* VARARGS2 */ int diff --git a/stdio-common/getw.c b/stdio-common/getw.c index a1629db438..03da6c3906 100644 --- a/stdio-common/getw.c +++ b/stdio-common/getw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,9 @@ #include <stdio.h> +#ifdef USE_IN_LIBIO +# define fread(p, m, n, s) _IO_fread (p, m, n, s) +#endif /* Read a word (int) from STREAM. */ int diff --git a/stdio-common/putw.c b/stdio-common/putw.c index c9d0d5dcc4..31cc00f41d 100644 --- a/stdio-common/putw.c +++ b/stdio-common/putw.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -18,6 +18,9 @@ #include <stdio.h> +#ifdef USE_IN_LIBIO +# define fwrite(p, n, m, s) _IO_fwrite (p, n, m, s) +#endif /* Write the word (int) W to STREAM. */ int diff --git a/stdio-common/snprintf.c b/stdio-common/snprintf.c index 3e6950dc47..08aaf88f18 100644 --- a/stdio-common/snprintf.c +++ b/stdio-common/snprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,10 @@ #include <stdarg.h> #include <stdio.h> +#ifdef USE_IN_LIBIO +# define __vsnprintf(s, l, f, a) _IO_vsnprintf (s, l, f, a) +#endif + /* Write formatted output into S, according to the format string FORMAT, writing no more than MAXLEN characters. */ /* VARARGS3 */ diff --git a/stdio-common/sprintf.c b/stdio-common/sprintf.c index 6ea13661a1..0a0259ef0c 100644 --- a/stdio-common/sprintf.c +++ b/stdio-common/sprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,10 @@ #include <stdarg.h> #include <stdio.h> +#ifdef USE_IN_LIBIO +# define vsprintf(s, f, a) _IO_vsprintf (s, f, a) +#endif + /* Write formatted output into S, according to the format string FORMAT. */ /* VARARGS2 */ int diff --git a/stdio-common/sscanf.c b/stdio-common/sscanf.c index c1061523cb..809f059ef3 100644 --- a/stdio-common/sscanf.c +++ b/stdio-common/sscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,10 @@ #include <stdarg.h> #include <stdio.h> +#ifdef USE_IN_LIBIO +# define __vsscanf(s, f, a) _IO_vsscanf (s, f, a) +#endif + /* Read formatted input from S, according to the format string FORMAT. */ /* VARARGS2 */ int |