ref: 9750a1e13aca0b42f79a5254bfe45e1263d2a053
parent: 00f81a75f35cbb0e33e92a0a3bf4486aa742427d
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Wed Sep 3 08:02:41 EDT 2014
Remove the setvbuf calls This program is not intended to be interactive, so it is not needed this calls that were necessary in the debug period.
--- a/cc1/main.c
+++ b/cc1/main.c
@@ -13,8 +13,6 @@
int
main(int argc, char *argv[])
{
- //setvbuf(stdin, NULL, _IONBF, 0);
- //setvbuf(stdout, NULL, _IONBF, 0);
init_keywords();
init_expr();
open_file(NULL);
--
⑨