depress compiler warnings
This commit is contained in:
parent
e4be084b0e
commit
3eefa2669f
|
@ -9,8 +9,6 @@ struct parser_control {
|
|||
pic_value value;
|
||||
};
|
||||
|
||||
#define YYDEBUG 1
|
||||
|
||||
%}
|
||||
|
||||
%parse-param {struct parser_control *p}
|
||||
|
|
|
@ -12,6 +12,8 @@ struct parser_control {
|
|||
#define YY_DECL int yylex (struct parser_control *p)
|
||||
%}
|
||||
|
||||
%option nounput
|
||||
|
||||
%%
|
||||
|
||||
[ \t\n\r] /* skip whitespace */
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include "picrin.h"
|
||||
|
||||
enum pic_tt
|
||||
|
|
Loading…
Reference in New Issue