avoid function redeclaration, PPparse() and PTparse()
This commit is contained in:
parent
882b3b4155
commit
0fb5f2142a
|
|
@ -1,3 +1,8 @@
|
|||
2010-10-09 Robert Larice
|
||||
* src/frontend/parse-bison.y ,
|
||||
* src/spicelib/parser/inpptree-parser.y :
|
||||
avoid function redeclaration, PPparse() and PTparse()
|
||||
|
||||
2010-10-09 Robert Larice
|
||||
* src/frontend/define.c ,
|
||||
* src/frontend/evaluate.c ,
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@
|
|||
#include "parse-bison.h"
|
||||
|
||||
extern int PPlex (YYSTYPE *lvalp, struct PPltype *llocp, char **line);
|
||||
extern int PPparse (char **line, struct pnode **retval);
|
||||
extern int PPdebug;
|
||||
|
||||
static void PPerror (YYLTYPE *locp, char **line, struct pnode **retval, char const *);
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
#include "inpptree-parser.h"
|
||||
|
||||
extern int PTlex (YYSTYPE *lvalp, char **line);
|
||||
extern int PTparse (char **line, struct INPparseNode **retval, void *ckt);
|
||||
|
||||
static void PTerror (char **line, struct INPparseNode **retval, void *ckt, char const *);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue