aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/cc/cc.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-05-22 17:27:37 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-05-22 17:27:37 -0700
commit39e4332d45e770dfe684071db4d3427fa2ca6b0c (patch)
tree839faa275fd916808b4ab6bb00db32012080085c /sys/cmd/cc/cc.h
parent69487ed29aed49ca0e3481e9783e02e9156258b2 (diff)
fix: calling signature of popio
Diffstat (limited to 'sys/cmd/cc/cc.h')
-rw-r--r--sys/cmd/cc/cc.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/cmd/cc/cc.h b/sys/cmd/cc/cc.h
index 62837c4..7d30360 100644
--- a/sys/cmd/cc/cc.h
+++ b/sys/cmd/cc/cc.h
@@ -314,13 +314,11 @@ rune getrune(Lexer *);
byte ungetbyte(Lexer *);
rune ungetrune(Lexer *, rune r);
-Io* openio(Lexer *lx, byte *path);
-Io* makeio(Lexer *lx, byte *name);
-void freeio(Lexer *lx, Io *io);
-void pushio(Lexer *lx, Io *new);
-void popio(Lexer *lx);
+Io* openio(Lexer *lx, byte *path);
+void pushio(Lexer *lx, Io *new);
+void popio(Lexer *lx);
-void puttok(Token);
+void puttok(Token);
// -----------------------------------------------------------------------
// parsing & type resolution