rename method to function
[cparser] / tokens.inc
index 3482386..8692cff 100644 (file)
@@ -4,6 +4,7 @@
 
 TS(IDENTIFIER,     "identifier", = 256)
 TS(INTEGER,        "integer number",)
+TS(FLOATINGPOINT,  "floatingpoint number",)
 TS(STRING_LITERAL, "string literal",)
 
 #define S(x)   T(x,#x,)
@@ -41,6 +42,7 @@ S(while)
 S(_Bool)
 S(_Complex)
 S(_Imaginary)
+S(__thread)
 S(__extension__)
 S(__attribute__)
 S(__builtin_va_list)