From 5b25cd7cd807cdb2ba0cd08e81c851673ca5969f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 30 Dec 2002 22:35:56 +0000 Subject: [PATCH] (YYDECL): Use YYSTYPE, not its deprecated alias yystype. This follows up the 2002-12-24 YYSTYPE bug fix. --- src/reader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reader.h b/src/reader.h index 7a8bb705..28f6404f 100644 --- a/src/reader.h +++ b/src/reader.h @@ -42,7 +42,7 @@ void scanner_initialize (void); void scanner_free (void); void scanner_last_string_free (void); -# define YY_DECL int gram_lex (yystype *val, location *loc) +# define YY_DECL int gram_lex (YYSTYPE *val, location *loc) YY_DECL; -- 2.50.0