Forgotten to close a file. This is corrected.

This commit is contained in:
ceriel 1984-11-12 18:05:20 +00:00
parent 2cd5f2033e
commit 6d42bab835

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; {