}
symbol = (char *)malloc(32 * sizeof(char));
gensym_n++;
- sprintf(symbol, "et%ld", gensym_n);
+ sprintf(symbol, "et%ld", (long int) gensym_n);
return(symbol);
}
for (i = 0; i < current; i++) {
if (error_codes[i] != (char *)NULL)
fprintf(hfile, "#define %-40s (%ldL)\n",
- error_codes[i], table_number + i);
+ error_codes[i], (long int) table_number + i);
}
}
[\t\n\r ] ;
\"{PC}*\" { register char *p; yylval.dynstr = ds((char *)yytext+1);
- if (p=strrchr(yylval.dynstr, '"')) *p='\0';
+ if ((p=strrchr(yylval.dynstr, '"'))) *p='\0';
return QUOTED_STRING;
}