Declare the internally used static functions on top, to get rid of the
compiler warnings. Reported by: bison-generated parsers git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@185 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
3176513162
commit
546e18c753
|
@ -37,6 +37,10 @@ extern char * progname;
|
|||
int yylex(void);
|
||||
int yyerror(char * errmsg);
|
||||
|
||||
static int assign_pin(int pinno, TOKEN * v);
|
||||
static int which_opcode(TOKEN * opcode);
|
||||
static int parse_cmdbits(OPCODE * op);
|
||||
|
||||
%}
|
||||
|
||||
%token K_READ
|
||||
|
|
Loading…
Reference in New Issue