- Porting Cygwin / W2K
This commit is contained in:
parent
821e7cbc94
commit
3e6bde793e
|
@ -43,7 +43,7 @@ char *key;
|
|||
addhtitem (pt_hash, namealloc("after") , AFTER );
|
||||
addhtitem (pt_hash, namealloc("alias") , ALIAS );
|
||||
addhtitem (pt_hash, namealloc("all") , ALL );
|
||||
addhtitem (pt_hash, namealloc("and") , _AND );
|
||||
addhtitem (pt_hash, namealloc("and") , tok_AND );
|
||||
addhtitem (pt_hash, namealloc("architecture") , ARCHITECTURE );
|
||||
addhtitem (pt_hash, namealloc("array") , ARRAY );
|
||||
addhtitem (pt_hash, namealloc("assert") , ASSERT );
|
||||
|
@ -101,7 +101,7 @@ char *key;
|
|||
addhtitem (pt_hash, namealloc("next") , _NEXT );
|
||||
addhtitem (pt_hash, namealloc("nor") , _NOR );
|
||||
addhtitem (pt_hash, namealloc("not") , _NOT );
|
||||
addhtitem (pt_hash, namealloc("null") , _NULL );
|
||||
addhtitem (pt_hash, namealloc("null") , tok_NULL );
|
||||
|
||||
addhtitem (pt_hash, namealloc("of") , OF );
|
||||
addhtitem (pt_hash, namealloc("on") , ON );
|
||||
|
|
|
@ -78,7 +78,7 @@ static struct lofig *MVL_CHDHED = NULL; /* childs list */
|
|||
%token AFTER
|
||||
%token ALIAS
|
||||
%token ALL
|
||||
%token _AND
|
||||
%token tok_AND
|
||||
%token ARCHITECTURE
|
||||
%token ARRAY
|
||||
%token ASSERT
|
||||
|
@ -128,7 +128,7 @@ static struct lofig *MVL_CHDHED = NULL; /* childs list */
|
|||
%token _NEXT
|
||||
%token _NOR
|
||||
%token _NOT
|
||||
%token _NULL
|
||||
%token tok_NULL
|
||||
%token OF
|
||||
%token ON
|
||||
%token OPEN
|
||||
|
|
Loading…
Reference in New Issue