]> git.saurik.com Git - bison.git/blobdiff - tests/calc.at
Workaround for SGI C++ compiler.
[bison.git] / tests / calc.at
index 26dcf8600093185e687d6834a834b821bab7c781..7da261786cf04133200237d4acd2146ef2641546 100644 (file)
@@ -1,5 +1,5 @@
 # Simple calculator.                         -*- Autotest -*-
-# Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+# Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -41,10 +41,8 @@ AT_DATA_GRAMMAR([calc.y],
 %{
 #include <stdio.h>
 
-#if STDC_HEADERS
-# include <stdlib.h>
-# include <string.h>
-#endif
+#include <stdlib.h>
+#include <string.h>
 #if HAVE_UNISTD_H
 # include <unistd.h>
 #else
@@ -53,8 +51,6 @@ AT_DATA_GRAMMAR([calc.y],
 #endif
 #include <ctype.h>
 
-extern void perror (const char *s);
-
 /* Exercise pre-prologue dependency to %union.  */
 typedef int semantic_value;
 
@@ -148,7 +144,7 @@ yy::Parser::error_ ()
 int
 yyparse (AT_PARAM_IF([semantic_value *result, int *count]))
 {
-  yy::Parser parser (!!YYDEBUG[]AT_LOCATION_IF([, yy::Location::Location ()])AT_PARAM_IF([, result, count]));
+  yy::Parser parser (!!YYDEBUG[]AT_LOCATION_IF([, yy::Location ()])AT_PARAM_IF([, result, count]));
   return parser.parse ();
 }
 ],