diff options
author | Camil Staps | 2016-08-25 18:05:46 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 18:05:46 +0200 |
commit | b70388ee72a7ab74eb45c987e62d731f63843a58 (patch) | |
tree | 26627d94bc3a749b433dcca2ac67573959e198b6 /compiler/lex.h | |
parent | Move memory allocation to separate module (diff) |
Fixed overwriting errors
Diffstat (limited to 'compiler/lex.h')
-rw-r--r-- | compiler/lex.h | 2 |
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 |