2000-07-07 Andrew Haley <aph@cygnus.com>

* cplus-dem.c (main): fflush() after emitting last char before
	waiting for input.
This commit is contained in:
Andrew Haley 2000-07-07 13:52:53 +00:00
parent cffaa28118
commit 0473bdf750
2 changed files with 6 additions and 0 deletions

View file

@ -4772,6 +4772,7 @@ main (argc, argv)
if (c == EOF)
break;
putchar (c);
fflush (stdout);
}
}