Skip to content

Commit

Permalink
fix(ci): fix using reserved keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
StunxFS authored Oct 10, 2023
1 parent 54c348c commit a6a29d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rivetc/src/codegen/c.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'double', 'export', 'float', 'goto', 'inline', 'int', 'long', 'namespace',
'new', 'register', 'restrict', 'short', 'signed', 'sizeof', 'small',
'static', 'typedef', 'typename', 'union', 'unsigned', 'void',
'volatile', 'template', 'far', 'near', 'huge'
'volatile', 'template', 'far', 'near', 'huge', 'linux', 'unix'
]

def c_escape(kw):
Expand Down

0 comments on commit a6a29d6

Please sign in to comment.