Forgotten to close a file. This is corrected.

This commit is contained in:
ceriel 1984-11-12 18:05:20 +00:00
parent 4e7f357a26
commit 1fe1bc8c09

View file

@ -266,6 +266,7 @@ copyfile(n) {
fatal(0,"Cannot open libraryfile, call an expert");
}
while ((c = getc(f)) != EOF) putc(c,fpars);
fclose(f);
}
install(target, source) string target, source; {