diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-07 13:50:49 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-07 13:50:49 +0000 |
commit | 04ef60ef534f1325037ee1c6957352e70ae21071 (patch) | |
tree | eecb58d0deaf76e51e00dcf067d948f1043a7ee0 /libiberty/cplus-dem.c | |
parent | c54bc24912801b1b72f42d99beec58534df71b85 (diff) | |
download | gcc-04ef60ef534f1325037ee1c6957352e70ae21071.tar.gz |
2000-07-07 Andrew Haley <aph@cygnus.com>
* cplus-dem.c (main): fflush() after emitting last char before
waiting for input.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34902 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/cplus-dem.c')
-rw-r--r-- | libiberty/cplus-dem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index 44d11968162..81ebbfcbe51 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -4772,6 +4772,7 @@ main (argc, argv) if (c == EOF) break; putchar (c); + fflush (stdout); } } |