From: Paul Eggert Date: Mon, 30 Dec 2002 22:35:56 +0000 (+0000) Subject: (YYDECL): Use YYSTYPE, not its deprecated alias yystype. This follows X-Git-Tag: BISON-1_875~6 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/5b25cd7cd807cdb2ba0cd08e81c851673ca5969f?ds=sidebyside (YYDECL): Use YYSTYPE, not its deprecated alias yystype. This follows up the 2002-12-24 YYSTYPE bug fix. --- 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;