From 4591b3a4fa86d0c61fa14a66c6da1803f12dd8cf Mon Sep 17 00:00:00 2001 From: Dale Weiler Date: Sun, 14 Apr 2013 01:26:40 +0000 Subject: [PATCH] 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. --- conout.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/conout.c b/conout.c index 8613ece..0595f33 100644 --- a/conout.c +++ b/conout.c @@ -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; } -- 2.39.2