diff --git a/vlib/v/gen/c/cgen.v b/vlib/v/gen/c/cgen.v index 1a28b24e8b..9ee4ce917b 100644 --- a/vlib/v/gen/c/cgen.v +++ b/vlib/v/gen/c/cgen.v @@ -25,7 +25,7 @@ const ( 'long', 'malloc', 'namespace', 'new', 'nil', 'panic', 'register', 'restrict', 'return', 'short', 'signed', 'sizeof', 'static', 'string', 'struct', 'switch', 'typedef', 'typename', 'union', 'unix', 'unsigned', 'void', 'volatile', 'while', 'template', 'true', 'small', - 'stdout', 'stdin', 'stderr'] + 'stdout', 'stdin', 'stderr', 'far', 'near', 'huge'] c_reserved_chk = token.new_keywords_matcher_from_array_trie(c_reserved) // same order as in token.Kind cmp_str = ['eq', 'ne', 'gt', 'lt', 'ge', 'le']