Make stdout unbuffered, so that if stderr==stdout, lines match up.

This commit is contained in:
David Schleef 2001-07-15 22:47:58 +00:00
parent b1aea5d077
commit eceb3bccf8

View file

@ -79,6 +79,8 @@ int main(int argc, char *argv[])
int c;
int i;
setvbuf(stdout,NULL,_IONBF,0);
while (1) {
c = getopt(argc, argv, "f:rs:t:v");
if (c == -1)