aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/cmd/cc/cc.c')
-rw-r--r--sys/cmd/cc/cc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cmd/cc/cc.c b/sys/cmd/cc/cc.c
index e348893..74040eb 100644
--- a/sys/cmd/cc/cc.c
+++ b/sys/cmd/cc/cc.c
@@ -286,10 +286,10 @@ compile(byte *path)
.line = 1,
.col = 1,
};
+
while (tok = lex(&C.lxr), tok.kind > Aeof) {
- puttok(tok);
+ // puttok(tok);
}
- freeio(C.lxr.io);
return tok.kind != Anil;
}