1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

yacc: Regen test cases for the previous commit

This commit is contained in:
Jung-uk Kim 2021-02-11 18:41:28 -05:00
parent 80f3143274
commit bf80e08ed5
88 changed files with 313 additions and 313 deletions

View File

@ -651,14 +651,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -666,7 +666,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -812,7 +812,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -1215,14 +1215,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -1230,7 +1230,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -1324,7 +1324,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -547,14 +547,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -562,7 +562,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -656,7 +656,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -547,14 +547,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -562,7 +562,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -656,7 +656,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -547,14 +547,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -562,7 +562,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -656,7 +656,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -542,14 +542,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -557,7 +557,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -651,7 +651,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -686,14 +686,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -701,7 +701,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -795,7 +795,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -555,14 +555,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -570,7 +570,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -664,7 +664,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -508,14 +508,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -523,7 +523,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -669,7 +669,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -570,14 +570,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -585,7 +585,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -679,7 +679,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -550,14 +550,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -565,7 +565,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -659,7 +659,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -542,14 +542,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -557,7 +557,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -651,7 +651,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -550,14 +550,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -565,7 +565,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -659,7 +659,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -550,14 +550,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -565,7 +565,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -659,7 +659,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -550,14 +550,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -565,7 +565,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -659,7 +659,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -415,14 +415,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -430,7 +430,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -524,7 +524,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -385,14 +385,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -400,7 +400,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -494,7 +494,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -449,14 +449,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -464,7 +464,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -558,7 +558,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -449,14 +449,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -464,7 +464,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -558,7 +558,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -449,14 +449,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -464,7 +464,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -558,7 +558,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -404,14 +404,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -419,7 +419,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -513,7 +513,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -504,14 +504,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -519,7 +519,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -613,7 +613,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -502,14 +502,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -517,7 +517,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -611,7 +611,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -403,14 +403,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -418,7 +418,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -512,7 +512,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -409,14 +409,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -424,7 +424,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -518,7 +518,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -415,14 +415,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -430,7 +430,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -524,7 +524,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -412,14 +412,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -427,7 +427,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -521,7 +521,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -407,14 +407,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -422,7 +422,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -516,7 +516,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -408,14 +408,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -423,7 +423,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -517,7 +517,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -1828,14 +1828,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -1843,7 +1843,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -1937,7 +1937,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -1382,14 +1382,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -1397,7 +1397,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -1491,7 +1491,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -427,14 +427,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -442,7 +442,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -536,7 +536,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -448,14 +448,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -463,7 +463,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -557,7 +557,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -503,14 +503,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -518,7 +518,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -612,7 +612,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -531,14 +531,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -546,7 +546,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -692,7 +692,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -504,14 +504,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -519,7 +519,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -665,7 +665,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -372,14 +372,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -387,7 +387,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -533,7 +533,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -560,14 +560,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -575,7 +575,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -669,7 +669,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -566,14 +566,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -581,7 +581,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -675,7 +675,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -560,14 +560,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -575,7 +575,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -669,7 +669,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -566,14 +566,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -581,7 +581,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -675,7 +675,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -561,14 +561,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -576,7 +576,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -670,7 +670,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -561,14 +561,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -576,7 +576,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -670,7 +670,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -561,14 +561,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -576,7 +576,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -670,7 +670,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -561,14 +561,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -576,7 +576,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -670,7 +670,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -271,14 +271,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -286,7 +286,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -380,7 +380,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -449,14 +449,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -464,7 +464,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -558,7 +558,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -449,14 +449,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -464,7 +464,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -558,7 +558,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -687,14 +687,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -702,7 +702,7 @@ static int yygrowstack(YYSTACKDATA *data)
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
newps = (YYLTYPE *)realloc(data->p_base, newsize * sizeof(*newps));
if (newps == 0)
if (newps == NULL)
return YYENOMEM;
data->p_base = newps;
@ -796,7 +796,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -378,14 +378,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -419,7 +419,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -515,14 +515,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -556,7 +556,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -391,14 +391,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -432,7 +432,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -388,14 +388,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -437,7 +437,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -406,14 +406,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -447,7 +447,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -386,14 +386,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -427,7 +427,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -378,14 +378,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -419,7 +419,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -386,14 +386,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -427,7 +427,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -386,14 +386,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -427,7 +427,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -386,14 +386,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -427,7 +427,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -287,14 +287,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -328,7 +328,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -257,14 +257,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -298,7 +298,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -302,14 +302,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -343,7 +343,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -302,14 +302,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -343,7 +343,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -302,14 +302,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -343,7 +343,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -268,14 +268,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -309,7 +309,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -267,14 +267,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -308,7 +308,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -273,14 +273,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -314,7 +314,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -279,14 +279,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -320,7 +320,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -275,14 +275,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -316,7 +316,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -271,14 +271,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -312,7 +312,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -273,14 +273,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -314,7 +314,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -1669,14 +1669,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -1710,7 +1710,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -1117,14 +1117,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -1158,7 +1158,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -412,14 +412,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -461,7 +461,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -384,14 +384,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -433,7 +433,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -281,14 +281,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -330,7 +330,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -393,14 +393,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -434,7 +434,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -399,14 +399,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -440,7 +440,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -393,14 +393,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -434,7 +434,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -399,14 +399,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -440,7 +440,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -394,14 +394,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -435,7 +435,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -394,14 +394,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -435,7 +435,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -394,14 +394,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -435,7 +435,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -394,14 +394,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -435,7 +435,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -153,14 +153,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -194,7 +194,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -302,14 +302,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -343,7 +343,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -302,14 +302,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -343,7 +343,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')

View File

@ -516,14 +516,14 @@ static int yygrowstack(YYSTACKDATA *data)
i = (int) (data->s_mark - data->s_base);
newss = (YYINT *)realloc(data->s_base, newsize * sizeof(*newss));
if (newss == 0)
if (newss == NULL)
return YYENOMEM;
data->s_base = newss;
data->s_mark = newss + i;
newvs = (YYSTYPE *)realloc(data->l_base, newsize * sizeof(*newvs));
if (newvs == 0)
if (newvs == NULL)
return YYENOMEM;
data->l_base = newvs;
@ -557,7 +557,7 @@ YYPARSE_DECL()
#if YYDEBUG
const char *yys;
if ((yys = getenv("YYDEBUG")) != 0)
if ((yys = getenv("YYDEBUG")) != NULL)
{
yyn = *yys;
if (yyn >= '0' && yyn <= '9')