open and close output file in one place

This commit is contained in:
ceriel
1990-01-29 12:40:43 +00:00
parent 9288115a4d
commit 218b982231
3 changed files with 5 additions and 8 deletions

View File

@@ -26,7 +26,11 @@ beginoutput()
{
extern ushort NLocals, NGlobals;
extern long NLChars, NGChars;
extern char *outputname;
if (! wr_open(outputname)) {
fatal("can't create %s", outputname);
}
if (incore)
generate_section_names();
@@ -82,4 +86,5 @@ endoutput()
} else {
write_bytes();
}
wr_close();
}