diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-16 16:01:55 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-16 16:01:55 +0000 |
commit | a6bb47e073377fa203132a3ae20f76103a8049b7 (patch) | |
tree | 6f133200943f818cad1e94da16393eadfe8dd250 /libio/iovfscanf.c | |
parent | db3b49b1fef1f3ba83eeb6537963bd7884e89602 (diff) | |
download | gcc-a6bb47e073377fa203132a3ae20f76103a8049b7.tar.gz |
Uli's libio/libstdc++ patches.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15486 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libio/iovfscanf.c')
-rw-r--r-- | libio/iovfscanf.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/libio/iovfscanf.c b/libio/iovfscanf.c index 1220e0750b7..0631458f21e 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; |