Use size_t rather than unsigned int in previous patch.

This commit is contained in:
Paul Eggert
2004-10-22 23:14:00 +00:00
parent ed4cdb7afc
commit 7886c2d419
2 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ void lalr_free (void);
together and GOTO_MAP[I - NTOKENS] is the index in FROM_STATE and
TO_STATE of the first of them. */
typedef unsigned int goto_number;
typedef size_t goto_number;
extern goto_number *goto_map;
extern state_number *from_state;

View File

@@ -29,7 +29,7 @@
#define END_NODE ((relation_node) -1)
typedef unsigned int relation_node;
typedef size_t relation_node;
typedef relation_node *relation_nodes;
typedef relation_nodes *relation;