Flush the output file before exiting; short-lived programs don't even fill

the stdio buffer.
This commit is contained in:
Mike Smith 1998-12-21 06:34:50 +00:00
parent 82315fb071
commit dcbdc0b9b5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=41970

View File

@ -31,7 +31,7 @@
#ifndef lint
static const char rcsid[] =
"$Id: main.c,v 1.11 1998/09/07 05:49:43 sef Exp $";
"$Id: main.c,v 1.12 1998/10/03 00:43:05 sef Exp $";
#endif /* not lint */
/*
@ -254,6 +254,7 @@ main(int ac, char **av) {
if (ioctl(Procfd, PIOCCONT, val) == -1)
warn("PIOCCONT");
} while (pfs.why != S_EXIT);
fflush(outfile);
if (sigexit) {
if (sigexit == SIGQUIT)
exit(sigexit);