aboutsummaryrefslogtreecommitdiff
path: root/src/parse/utils.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 16:06:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 16:06:58 -0400
commit2bc8e5f74cdfca319f04ac2e6c13d04c05059137 (patch)
tree4e3960e6a9f97573c9a63d6cbd74ea67bf20ffeb /src/parse/utils.c
parent40e332fdbde4cc082ba9d0e4f5e8c53612bfec68 (diff)
Deprecate `extern` keyword
Diffstat (limited to 'src/parse/utils.c')
-rw-r--r--src/parse/utils.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/parse/utils.c b/src/parse/utils.c
index 0644bfa0..2048a3ff 100644
--- a/src/parse/utils.c
+++ b/src/parse/utils.c
@@ -12,10 +12,10 @@
#include "utils.h"
static const char *keywords[] = {
- "C_code", "_max_", "_min_", "and", "assert", "break", "continue", "defer", "deserialize", "do",
- "else", "enum", "extend", "extern", "for", "func", "if", "in", "lang", "mod",
- "mod1", "no", "none", "not", "or", "pass", "return", "skip", "skip", "stop",
- "struct", "then", "unless", "use", "when", "while", "xor", "yes",
+ "C_code", "_max_", "_min_", "and", "assert", "break", "continue", "defer", "deserialize", "do",
+ "else", "enum", "extend", "for", "func", "if", "in", "lang", "mod", "mod1",
+ "no", "none", "not", "or", "pass", "return", "skip", "skip", "stop", "struct",
+ "then", "unless", "use", "when", "while", "xor", "yes",
};
CONSTFUNC bool is_keyword(const char *word) {