diff --git a/profile/3.3.5a-windows-386/include/lua/lex.h b/profile/3.3.5a-windows-386/include/lua/lex.h index 280b5df..5fd0e03 100644 --- a/profile/3.3.5a-windows-386/include/lua/lex.h +++ b/profile/3.3.5a-windows-386/include/lua/lex.h @@ -2,6 +2,7 @@ #define LUA_LEX_H DECLARE_UNION(SemInfo); +DECLARE_STRUCT(Token); DECLARE_STRUCT(LexState); #include "lua/parser.h" @@ -12,10 +13,10 @@ union SemInfo { TString* ts; }; /* semantics information */ -typedef struct Token { - int token; +struct Token { + int32_t token; SemInfo seminfo; -} Token; +}; struct LexState { int32_t current; /* current character (charint) */