line flushing is default

This commit is contained in:
buffet 2019-04-13 15:30:28 +02:00
parent 085b27f0b8
commit 23a7d189f1

View file

@ -60,9 +60,6 @@ main(int argc, char **argv)
int c; int c;
while ((c = getc(socket_file)) != EOF) { while ((c = getc(socket_file)) != EOF) {
putchar(c); putchar(c);
if (c == '\n') {
fflush(stdout);
}
} }
fclose(socket_file); fclose(socket_file);