]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
intl/plural.y: Avoid conflicting declarations of yyerror and yylex
authorAndrea Monaco <andrea.monaco@autistici.org>
Sun, 12 Dec 2021 09:24:28 +0000 (10:24 +0100)
committerArjun Shankar <arjun@redhat.com>
Wed, 22 Dec 2021 13:46:39 +0000 (14:46 +0100)
bison-3.8 includes these lines in the generated intl/plural.c:

  #if !defined __gettexterror && !defined YYERROR_IS_DECLARED
  void __gettexterror (struct parse_args *arg, const char *msg);
  #endif
  #if !defined __gettextlex && !defined YYLEX_IS_DECLARED
  int __gettextlex (YYSTYPE *yylvalp, struct parse_args *arg);
  #endif

Those default prototypes provided by bison conflict with the
declarations later on in plural.y.  This patch solves the issue.

Reviewed-by: Arjun Shankar <arjun@redhat.com>
intl/plural.y

index e02e74541c4574eba5b97a1708cfcfe81def0f38..2ee128ba01b5820d9562e6fd3d5d0b8226d5d01b 100644 (file)
 # define __gettextparse PLURAL_PARSE
 #endif
 
+/* Later we provide those prototypes.  Without these macros, bison may
+   generate its own prototypes with possible conflicts.  */
+#define YYLEX_IS_DECLARED
+#define YYERROR_IS_DECLARED
+
 %}
 %parse-param {struct parse_args *arg}
 %lex-param {struct parse_args *arg}