From 39e4332d45e770dfe684071db4d3427fa2ca6b0c Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Fri, 22 May 2020 17:27:37 -0700 Subject: fix: calling signature of popio --- sys/cmd/cc/cc.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'sys/cmd/cc/cc.h') 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 -- cgit v1.2.1