Minor white space issues, e.g. trailing white space at end of line.

This commit is contained in:
Paul Eggert
2003-06-16 19:17:38 +00:00
parent 907e3bc851
commit 671881d12d

View File

@@ -34,12 +34,11 @@ $1
%{ %{
#include <stdio.h> #include <stdio.h>
#define YYSTYPE const char* #define YYSTYPE char const *
]m4_bmatch([$2], [stmtMerge], ]m4_bmatch([$2], [stmtMerge],
[ static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);])[ [ static YYSTYPE stmtMerge (YYSTYPE x0, YYSTYPE x1);])[
#define YYINITDEPTH 10 #define YYINITDEPTH 10
static char* format (const char*, ...); static char *format (char const *, ...);
struct YYLTYPE; struct YYLTYPE;
#if YYPURE #if YYPURE
# if YYLSP_NEEDED # if YYLSP_NEEDED
@@ -108,7 +107,7 @@ declarator : ID
#include <stdarg.h> #include <stdarg.h>
int int
main (int argc, char** argv) main (int argc, char **argv)
{ {
if (argc != 2) if (argc != 2)
abort (); abort ();
@@ -203,7 +202,8 @@ yyerror (ERROR_PARAMETERS)
} }
static char* format (const char* form, ...) static char *
format (char const *form, ...)
{ {
char buffer[1024]; char buffer[1024];
va_list args; va_list args;