Fix missing prototype for ReadVerilogFile function

Unbreak OpenBSD port for mips64 arch
This commit is contained in:
Alessandro De Laurenzis
2021-01-17 10:21:52 +01:00
parent 0df6c83df5
commit 8a7bb7f2ca
3 changed files with 9 additions and 14 deletions
+9
View File
@@ -65,6 +65,15 @@ extern void AssignCircuits(char *name1, int file1, char *name2, int file2);
/* flatten.c */
extern int PrematchLists(char *, int, char *, int);
/* verilog.c */
struct cellstack {
char *cellname;
struct cellstack *next;
};
void ReadVerilogFile(char *fname, int filenum, struct cellstack **CellStackPtr,
int blackbox);
/* Define (enumerate) various device classes, largely based on SPICE */
/* model types, mixed with some ext/sim types. */