]> git.saurik.com Git - bison.git/commitdiff
tests: please C90 compilers
authorAkim Demaille <akim@lrde.epita.fr>
Mon, 28 Jan 2013 16:10:30 +0000 (17:10 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Mon, 28 Jan 2013 16:46:13 +0000 (17:46 +0100)
* tests/actions.at, tests/conflicts.at: Use /* ... */ comments.
Let "main" return a value.

tests/actions.at
tests/conflicts.at

index 302c1bbb1985a138eff817f94175838c630ccff0..9473f6ef24448437003b87eb4f7bab7158be2c72 100644 (file)
@@ -1011,7 +1011,7 @@ AT_DATA_GRAMMAR([[input]]$1[[.y]],
 start: { $$ = 'S'; } ;
 
 %%
 start: { $$ = 'S'; } ;
 
 %%
-#include <stdlib.h> // abort
+#include <stdlib.h> /* abort */
 static int
 yylex (void)
 {
 static int
 yylex (void)
 {
index 5325b69e2742ac143930cf6c9ed9d346e13f76e2..7828cdf0d8e2253ad09941587d4c78c79295bbff 100644 (file)
@@ -74,6 +74,7 @@ int main (void)
   assert (T < U);
   assert (U < V);
   assert (V < W);
   assert (T < U);
   assert (U < V);
   assert (V < W);
+  return 0;
 }
 ]])
 
 }
 ]])