%{
#include <stdio.h>
- #define YYSTYPE const char*
+ #define YYSTYPE char const *
]m4_bmatch([$2], [stmtMerge],
[ static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);])[
#define YYINITDEPTH 10
- static char* format (const char*, ...);
-
+ static char *format (char const *, ...);
+ struct YYLTYPE;
+#if YYPURE
+# if YYLSP_NEEDED
+# define LEX_PARAMETERS YYSTYPE *lvalp, struct YYLTYPE *llocp
+# define ERROR_PARAMETERS struct YYLTYPE *llocp, char const *s
+# else
+# define LEX_PARAMETERS YYSTYPE *lvalp
+# endif
+#endif
+#ifndef LEX_PARAMETERS
+# define LEX_PARAMETERS void
+#endif
+#ifndef ERROR_PARAMETERS
+# define ERROR_PARAMETERS char const *s
+#endif
+ int yylex (LEX_PARAMETERS);
+ int yyerror (ERROR_PARAMETERS);
%}
%token TYPENAME ID
%%
prog :
- | prog stmt {
+ | prog stmt {
]AT_LOCATION_IF([
- printf ("%d.%d-%d.%d: ",
+ printf ("%d.%d-%d.%d: ",
@2.first_line, @2.first_column,
@2.last_line, @2.last_column);])[
printf ("%s\n", ]$[2);
#include <stdarg.h>
int
-main (int argc, char** argv)
+main (int argc, char **argv)
{
if (argc != 2)
abort ();
}
int
-#if YYPURE && YYLSP_NEEDED
- yylex (YYSTYPE *lvalp, YYLTYPE *llocp)
-#elif YYPURE
- yylex (YYSTYPE *lvalp)
-#else
- yylex ()
-#endif
+yylex (LEX_PARAMETERS)
{
char buffer[256];
int c;
case ' ': case '\f':
colNum += 1;
break;
- case '\n':
+ case '\n':
lineNum += 1;
colNum = 1;
break;
{
int tok;
#if YYLSP_NEEDED
- yylloc.first_line = yylloc.last_line = lineNum;
+ yylloc.first_line = yylloc.last_line = lineNum;
yylloc.first_column = colNum;
#endif
if (isalpha (c))
tok = isupper ((unsigned char) buffer[0]) ? TYPENAME : ID;
yylval = strcpy (malloc (i), buffer);
}
- else
+ else
{
colNum += 1;
tok = c;
}
int
-yyerror (
+yyerror (ERROR_PARAMETERS)
+{
#if YYPURE && YYLSP_NEEDED
- YYLTYPE *llocp,
+ /* Pacify GCC by using llocp. */
+ if (! llocp)
+ abort ();
#endif
- const char *s
- )
-{
fprintf (stderr, "%s\n", s);
return 0;
}
-static char* format (const char* form, ...)
+static char *
+format (char const *form, ...)
{
char buffer[1024];
va_list args;