* cxxfilt.c (main): Flush ouput at newline.
@ -1,3 +1,7 @@
2005-11-17 Andrew Haley <aph@redhat.com>
2005-11-16 Mark Mitchell <mark@codesourcery.com>
* doc/binutils.texi: Include config.texi and @file documentation
@ -278,6 +278,8 @@ main (int argc, char **argv)
/* Echo the whitespace characters so that the output looks
like the input, only with the mangled names demangled. */
putchar (c);
if (c == '\n')
fflush (stdout);
}