More frequently flush stdout buffers to achieve correct serialization.
This fixes the issue of incorrect ordering of output when output is buffered
from both ch.exe and ChakraCore.dll, which now have separate instances of the
stdout buffer each statically linked into the respective modules (previously,
all buffered output calls to stdout would use the same buffer from
ucrtbased.dll).
Performance changes that result from extra flushes is unimportant
especially when most of the instances where we write to stdout are related
ch.exe's WScript.Echo and debugging code.