aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/c_lexer.flex
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/src/c_lexer.flex')
-rw-r--r--c_compiler/src/c_lexer.flex4
1 files changed, 4 insertions, 0 deletions
diff --git a/c_compiler/src/c_lexer.flex b/c_compiler/src/c_lexer.flex
index 90790b5..4255880 100644
--- a/c_compiler/src/c_lexer.flex
+++ b/c_compiler/src/c_lexer.flex
@@ -47,6 +47,10 @@ ALL .
(const) { return T_CONST; }
(volatile) { return T_VOLATILE; }
+(continue) { return T_CONTINUE; }
+(break) { return T_BREAK; }
+(goto) { return T_GOTO; }
+
[;] { return T_SC; }
[,] { return T_CMA; }
[(] { return T_LRB; }