Browse Source

avoid function redeclaration, PPparse() and PTparse()

pre-master-46
rlar 16 years ago
parent
commit
0fb5f2142a
  1. 5
      ChangeLog
  2. 1
      src/frontend/parse-bison.y
  3. 1
      src/spicelib/parser/inpptree-parser.y

5
ChangeLog

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

1
src/frontend/parse-bison.y

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

1
src/spicelib/parser/inpptree-parser.y

@ -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…
Cancel
Save