MINOR: init: make stdout unbuffered

printf is unusable for debugging without this, and printf() is not used
for anything else.
diff --git a/src/haproxy.c b/src/haproxy.c
index f1a2fb9..67df6cd 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -2492,6 +2492,7 @@
 	char errmsg[100];
 	int pidfd = -1;
 
+	setvbuf(stdout, NULL, _IONBF, 0);
 	init(argc, argv);
 	signal_register_fct(SIGQUIT, dump, SIGQUIT);
 	signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);