More flattening. I don't know why I turned off buffering, that makes output to console even slower due to all the flushes, which actually slows down compilation.

This commit is contained in:
Dale Weiler 2013-04-14 01:26:40 +00:00
parent eb2a74f7e7
commit 4591b3a4fa

View file

@ -282,10 +282,6 @@ int con_change(const char *out, const char *err) {
con_enablecolor();
} else if (!(console.handle_err = fs_file_open(err, "w"))) return 0;
/* no buffering */
setvbuf(console.handle_out, NULL, _IONBF, 0);
setvbuf(console.handle_err, NULL, _IONBF, 0);
return 1;
}