summaryrefslogtreecommitdiff
path: root/tokenizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tokenizer.c')
-rw-r--r--tokenizer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tokenizer.c b/tokenizer.c
index dc194ca..b34bc65 100644
--- a/tokenizer.c
+++ b/tokenizer.c
@@ -14,8 +14,7 @@ static const char *const keywords[KW_COUNT] =
"int", "i8", "i16", "i32", "i64",
"u8", "u16", "u32", "u64", "float", "f32", "f64", "Type",
"Package",
- "char", "bool", "true", "false",
- "pkg"};
+ "char", "bool", "true", "false"};
static inline const char *kw_to_str(Keyword k) { return keywords[k]; }