avoid function redeclaration, PPparse() and PTparse()

This commit is contained in:
rlar 2010-10-09 14:28:28 +00:00
parent 882b3b4155
commit 0fb5f2142a
3 changed files with 5 additions and 2 deletions

View File

@ -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 ,

View File

@ -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 *);

View File

@ -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 *);