From f55ec70868b265324deb269be2059b3f85864ac6 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 22 Oct 2004 23:09:27 +0000 Subject: (goto_number): Now unsigned int, not short int. (GOTO_NUMBER_MAXIMUM): Remove. --- src/lalr.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lalr.h') diff --git a/src/lalr.h b/src/lalr.h index cd50046b..9253e0fd 100644 --- a/src/lalr.h +++ b/src/lalr.h @@ -56,8 +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 short int goto_number; -# define GOTO_NUMBER_MAXIMUM SHRT_MAX +typedef unsigned int goto_number; extern goto_number *goto_map; extern state_number *from_state; -- cgit v1.2.1