summary refs log tree commit diff
path: root/bin/hi.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-02-10 13:07:04 -0500
committerJune McEnroe <june@causal.agency>2019-02-10 13:07:04 -0500
commit4bf3e1dd24b41cef7566da92d49078fba946a538 (patch)
tree9f0191acd3daa10d60cccef1fe6482bcb7fd6ac2 /bin/hi.c
parentAdd hup (diff)
downloadsrc-4bf3e1dd24b41cef7566da92d49078fba946a538.tar.gz
src-4bf3e1dd24b41cef7566da92d49078fba946a538.zip
Add back missing static keyword
Ooops.
Diffstat (limited to 'bin/hi.c')
-rw-r--r--bin/hi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hi.c b/bin/hi.c
index 23b3cb3a..f40cb95e 100644
--- a/bin/hi.c
+++ b/bin/hi.c
@@ -66,7 +66,7 @@ struct Syntax {
 // C syntax {{{
 static const struct Syntax CSyntax[] = {
 	{ Keyword, .subexp = 2, .pattern = WB
-		"(" "auto|extern|register|(_T|t)hread_local|typedef"
+		"(" "auto|extern|register|static|(_T|t)hread_local|typedef"
 		"|" "_Atomic|const|restrict|volatile"
 		"|" "inline|(_N|n)oreturn"
 		"|" "(_A|a)lignas"