This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
61 lines
1.3 KiB
OpenEdge ABL
61 lines
1.3 KiB
OpenEdge ABL
#define YYPREFIX "yy"
|
|
|
|
#define YYPURE 0
|
|
|
|
#line 2 "code_debug.y"
|
|
|
|
#ifdef YYBISON
|
|
int yylex(void);
|
|
static void yyerror(const char *);
|
|
#endif
|
|
|
|
|
|
#if ! defined(YYSTYPE) && ! defined(YYSTYPE_IS_DECLARED)
|
|
/* Default: YYSTYPE is the semantic value type. */
|
|
typedef int YYSTYPE;
|
|
# define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
|
|
/* compatibility with bison */
|
|
#ifdef YYPARSE_PARAM
|
|
/* compatibility with FreeBSD */
|
|
# ifdef YYPARSE_PARAM_TYPE
|
|
# define YYPARSE_DECL() yyparse(YYPARSE_PARAM_TYPE YYPARSE_PARAM)
|
|
# else
|
|
# define YYPARSE_DECL() yyparse(void *YYPARSE_PARAM)
|
|
# endif
|
|
#else
|
|
# define YYPARSE_DECL() yyparse(void)
|
|
#endif
|
|
|
|
/* Parameters sent to lex. */
|
|
#ifdef YYLEX_PARAM
|
|
# define YYLEX_DECL() yylex(void *YYLEX_PARAM)
|
|
# define YYLEX yylex(YYLEX_PARAM)
|
|
#else
|
|
# define YYLEX_DECL() yylex(void)
|
|
# define YYLEX yylex()
|
|
#endif
|
|
|
|
/* Parameters sent to yyerror. */
|
|
#ifndef YYERROR_DECL
|
|
#define YYERROR_DECL() yyerror(const char *s)
|
|
#endif
|
|
#ifndef YYERROR_CALL
|
|
#define YYERROR_CALL(msg) yyerror(msg)
|
|
#endif
|
|
|
|
extern int YYPARSE_DECL();
|
|
|
|
extern int yydebug;
|
|
extern int yynerrs;
|
|
|
|
extern int yyerrflag;
|
|
extern int yychar;
|
|
extern YYSTYPE yyval;
|
|
extern YYSTYPE yylval;
|
|
#if defined(YYLTYPE) || defined(YYLTYPE_IS_DECLARED)
|
|
extern YYLTYPE yyloc; /* position returned by actions */
|
|
extern YYLTYPE yylloc; /* position from the lexer */
|
|
#endif
|