aboutsummaryrefslogtreecommitdiff
path: root/compiler/lex.h
diff options
context:
space:
mode:
authorCamil Staps2016-08-25 18:05:46 +0200
committerCamil Staps2016-08-25 18:05:46 +0200
commitb70388ee72a7ab74eb45c987e62d731f63843a58 (patch)
tree26627d94bc3a749b433dcca2ac67573959e198b6 /compiler/lex.h
parentMove memory allocation to separate module (diff)
Fixed overwriting errors
Diffstat (limited to 'compiler/lex.h')
-rw-r--r--compiler/lex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/lex.h b/compiler/lex.h
index 61a7170..268d0e4 100644
--- a/compiler/lex.h
+++ b/compiler/lex.h
@@ -3,6 +3,6 @@
#include "syntax.h"
-token_list* lex(char*);
+token_list* lex(token_list*, char*);
#endif