cplus-dem.c (main): fflush() after emitting last char before waiting for input.

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

	* cplus-dem.c (main): fflush() after emitting last char before
	waiting for input.

From-SVN: r34902
This commit is contained in:
Andrew Haley 2000-07-07 13:50:49 +00:00 committed by Andrew Haley
parent a12cf65042
commit 6d0be3693d
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2000-07-07 Andrew Haley <aph@cygnus.com>
* cplus-dem.c (main): fflush() after emitting last char before
waiting for input.
2000-06-28 Alex Samuel <samuel@codesourcery.com>
* cp-demangle.c (demangle_encoding): Accept no substitutions.

View File

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