Remove unnecessary system imports

This commit is contained in:
joachimschmidt557 2019-04-04 08:24:08 +02:00
parent bed37dc237
commit 94c57b1da2
6 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ import common
proc catFile(file:string) =
if not existsFile(file):
err "rev: " & file & ": No such file or directory"
system.quit 1
quit 1
var
f = open(file, fmRead)
for line in lines(f):