binutils-gdb/binutils/windmc.h
Alan Modra 314ec7aeeb Modernise yyerror
Newer versions of bison emit a prototype for yyerror
	void yyerror (const char *);
This clashes with some of our old code that declares yyerror to return
an int.  Fix that in most cases by modernizing yyerror.  bfin-parse.y
uses the return value all over the place, so for there disable
generation of the prototype as specified by posix.

binutils/
	* arparse.y (yyerror): Return void.
	* dlltool.c (yyerror): Likewise.
	* dlltool.h (yyerror): Likewise.
	* sysinfo.y (yyerror): Likewise.
	* windmc.h (yyerror): Likewise.
	* mclex.c (mc_error): Extract from ..
	(yyerror): ..here, both now returning void.
gas/
	* config/bfin-parse.y (yyerror): Define.
	(yyerror): Make static.
	* itbl-parse.y (yyerror): Return void.
ld/
	* deffilep.y (def_error): Return void.
2021-11-06 21:15:49 +10:30

100 lines
2.6 KiB
C

/* windmc.h -- header file for windmc program.
Copyright (C) 2007-2021 Free Software Foundation, Inc.
Written by Kai Tietz, Onevision.
This file is part of GNU Binutils.
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
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
#include "ansidecl.h"
/* This is the header file for the windmc program. It defines
structures and declares functions used within the program. */
#include "winduni.h"
#ifndef WINDMC_HXX
#define WINDMC_HXX
/* Global flag variables (set by windmc.c file. */
extern int mcset_custom_bit;
extern int mcset_out_values_are_decimal;
extern rc_uint_type mcset_max_message_length;
extern unichar *mcset_msg_id_typedef;
/* Lexer keyword definition and internal memory structures. */
typedef struct mc_keyword
{
struct mc_keyword *next;
const char *group_name;
size_t len;
unichar *usz;
int rid;
rc_uint_type nval;
unichar *sval;
wind_language_t lang_info;
} mc_keyword;
typedef struct mc_node_lang
{
struct mc_node_lang *next;
rc_uint_type vid;
const mc_keyword *lang;
unichar *message;
} mc_node_lang;
typedef struct mc_node
{
struct mc_node *next;
unichar *user_text;
const mc_keyword *facility;
const mc_keyword *severity;
unichar *symbol;
rc_uint_type id;
rc_uint_type vid;
unichar *id_typecast;
mc_node_lang *sub;
} mc_node;
extern mc_node *mc_nodes;
void mc_add_keyword (unichar *, int, const char *, rc_uint_type, unichar *);
const mc_keyword *enum_facility (int);
const mc_keyword *enum_severity (int);
mc_node_lang *mc_add_node_lang (mc_node *, const mc_keyword *, rc_uint_type);
mc_node *mc_add_node (void);
/* Standard yacc/flex stuff. */
void yyerror (const char *);
int yylex (void);
int yyparse (void);
/* mclex.c */
void mc_set_inputfile (const char *);
void mc_set_content (const unichar *);
/* Lexer control variables. Used by mcparser.y file. */
extern bool mclex_want_nl;
extern bool mclex_want_line;
extern bool mclex_want_filename;
void mc_fatal (const char *, ...);
void mc_warn (const char *, ...);
#endif