making goto a keyword

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 21:56:21 +01:00
parent 24f9b63475
commit 2ec8ef4406

View file

@ -47,7 +47,8 @@ static const char *keywords_fg[] = {
"switch", "case", "default",
"struct", "union",
"break", "continue",
"typedef"
"typedef",
"goto"
};
static size_t num_keywords_fg = sizeof(keywords_fg) / sizeof(keywords_fg[0]);