aliases_parse.y (6cec9cad762b6476313fb1f8e931a1647822db6b) | aliases_parse.y (e56bad4a94aff7e3e43200568b211de872a52aea) |
---|---|
1%{ 2 3#include <err.h> 4#include <string.h> 5#include <syslog.h> 6#include "dma.h" 7 8extern int yylineno; 9static void yyerror(const char *); | 1%{ 2 3#include <err.h> 4#include <string.h> 5#include <syslog.h> 6#include "dma.h" 7 8extern int yylineno; 9static void yyerror(const char *); |
10int yywrap(void); 11int yylex(void); | |
12 13static void 14yyerror(const char *msg) 15{ 16 /** 17 * Because we do error '\n' below, we need to report the error 18 * one line above of what yylineno points to. 19 */ --- 93 unchanged lines hidden --- | 10 11static void 12yyerror(const char *msg) 13{ 14 /** 15 * Because we do error '\n' below, we need to report the error 16 * one line above of what yylineno points to. 17 */ --- 93 unchanged lines hidden --- |