aboutsummaryrefslogtreecommitdiff
path: root/libio/iovfscanf.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@cygnus.com>1997-09-16 10:01:55 -0600
committerJeff Law <law@gcc.gnu.org>1997-09-16 10:01:55 -0600
commite693cc28bbfeb1c1728bec4392505d2eba2b1090 (patch)
tree6f133200943f818cad1e94da16393eadfe8dd250 /libio/iovfscanf.c
parent610ce97e654a9f2ed5e103bddd936988c5768538 (diff)
downloadgcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.zip
gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.gz
gcc-e693cc28bbfeb1c1728bec4392505d2eba2b1090.tar.bz2
Uli's libio/libstdc++ patches.
From-SVN: r15486
Diffstat (limited to 'libio/iovfscanf.c')
-rw-r--r--libio/iovfscanf.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/libio/iovfscanf.c b/libio/iovfscanf.c
index 1220e07..0631458 100644
--- a/libio/iovfscanf.c
+++ b/libio/iovfscanf.c
@@ -119,9 +119,11 @@ extern double atof();
*errp|=2 if we an invalid character. */
int
-DEFUN(_IO_vfscanf, (fp, fmt0, ap, errp),
- register _IO_FILE *fp AND char const *fmt0
- AND _IO_va_list ap AND int *errp)
+_IO_vfscanf (fp, fmt0, ap, errp)
+ _IO_FILE *fp;
+ char const *fmt0;
+ _IO_va_list ap;
+ int *errp;
{
register const u_char *fmt = (const u_char *)fmt0;
register int c; /* character from format, or conversion */
@@ -696,8 +698,9 @@ done:
* considered part of the scanset.
*/
static const u_char *
-DEFUN(__sccl, (tab, fmt),
- register char *tab AND register const u_char *fmt)
+__sccl (tab, fmt)
+ char *tab;
+ const u_char *fmt;
{
register int c, n, v;