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/ioignore.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/ioignore.c')
-rw-r--r-- | libio/ioignore.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/ioignore.c b/libio/ioignore.c index a7c2f286755..ac0678ed7b9 100644 --- a/libio/ioignore.c +++ b/libio/ioignore.c @@ -25,8 +25,9 @@ the executable file might be covered by the GNU General Public License. */ #include "libioP.h" int -DEFUN(_IO_ignore, (fp, n), - register _IO_FILE *fp AND _IO_size_t n) +_IO_ignore (fp, n) + _IO_FILE *fp; + _IO_size_t n; { register _IO_size_t more = n; for (;;) |