- Porting cygwin / W2K

This commit is contained in:
Ludovic Jacomme 2004-07-13 20:31:20 +00:00
parent 4fae598c48
commit 821e7cbc94
2 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ char *key;
addhtitem (pt_hash, namealloc("after") , AFTER ); addhtitem (pt_hash, namealloc("after") , AFTER );
addhtitem (pt_hash, namealloc("alias") , ALIAS ); addhtitem (pt_hash, namealloc("alias") , ALIAS );
addhtitem (pt_hash, namealloc("all") , ALL ); 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("architecture") , ARCHITECTURE );
addhtitem (pt_hash, namealloc("arg") , ARG ); addhtitem (pt_hash, namealloc("arg") , ARG );
addhtitem (pt_hash, namealloc("array") , ARRAY ); addhtitem (pt_hash, namealloc("array") , ARRAY );
@ -105,7 +105,7 @@ char *key;
addhtitem (pt_hash, namealloc("next") , _NEXT ); addhtitem (pt_hash, namealloc("next") , _NEXT );
addhtitem (pt_hash, namealloc("nor") , _NOR ); addhtitem (pt_hash, namealloc("nor") , _NOR );
addhtitem (pt_hash, namealloc("not") , _NOT ); 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("of") , OF );
addhtitem (pt_hash, namealloc("on") , ON ); addhtitem (pt_hash, namealloc("on") , ON );

View File

@ -86,7 +86,7 @@ static long base ;
%token AFTER %token AFTER
%token ALIAS %token ALIAS
%token ALL %token ALL
%token _AND %token tok_AND
%token ARCHITECTURE %token ARCHITECTURE
%token ARRAY %token ARRAY
%token ARG %token ARG
@ -140,7 +140,7 @@ static long base ;
%token _NEXT %token _NEXT
%token _NOR %token _NOR
%token _NOT %token _NOT
%token _NULL %token tok_NULL
%token OF %token OF
%token ON %token ON
%token OPEN %token OPEN