Makefile: allow to override the build type variable.
[TP_AL_C.git] / lexer / lexical_analyzer.c
index 32efd0b5af735e648418568d72c43339dae6b10d..39c82e075169b69eb50ce895bc283227a45f72cc 100644 (file)
@@ -5,6 +5,7 @@
 
 #include "global_vars.h"
 #include "print_helper.h"
+#include "lexical_analyzer.h"
 
 wint_t c;
 
@@ -46,7 +47,7 @@ static bool isEOF() {
     return false;
 }
 
-int scanner() {
+int scanner(void) {
     tokenValue[0] = 0;
     unsigned int i = 0;
     wchar_t m[6];