(yysigned_char): New type.

This commit is contained in:
Paul Eggert
2002-10-14 08:06:06 +00:00
parent 7c78fa1885
commit 768eb43fe8
2 changed files with 12 additions and 0 deletions

View File

@@ -198,6 +198,12 @@ static YYLTYPE yyloc_default;
# define yyfalse 0 # define yyfalse 0
#endif #endif
#if defined (__STDC__) || defined (__cplusplus)
typedef signed char yysigned_char;
#else
typedef short yysigned_char;
#endif
/*-----------------. /*-----------------.
| GCC extensions. | | GCC extensions. |
`-----------------*/ `-----------------*/

View File

@@ -307,6 +307,12 @@ b4_location_if(
#endif #endif
#if defined (__STDC__) || defined (__cplusplus)
typedef signed char yysigned_char;
#else
typedef short yysigned_char;
#endif
/* YYFINAL -- State number of the termination state. */ /* YYFINAL -- State number of the termination state. */
#define YYFINAL b4_final_state_number #define YYFINAL b4_final_state_number
#define YYLAST b4_last #define YYLAST b4_last