Delete temporary

This commit is contained in:
ceriel 1987-02-23 09:18:41 +00:00
parent 8a407d5ee9
commit 2d34e6f839

View file

@ -39,7 +39,10 @@ char **argv;
/* compile source programs */
compileprogram(program);
linewarnings();
if( errorcnt) exit(-1);
if( errorcnt) {
unlink(tmpfname);
exit(-1);
}
/* process em object files */
simpleprogram();
}