FreeCalypso > hg > ueda-linux
comparison ueda/sverp/vparse.c @ 4:7b4f78fcca08
ueda/sverp Linuxified
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 20 Jul 2015 00:53:19 +0000 |
parents | cd92449fdb51 |
children |
comparison
equal
deleted
inserted
replaced
3:d098f8548b44 | 4:7b4f78fcca08 |
---|---|
1 /* | 1 /* |
2 * Parser for the minimal subset of Verilog we grok | 2 * Parser for the minimal subset of Verilog we grok |
3 */ | 3 */ |
4 | 4 |
5 #include <stdio.h> | 5 #include <stdio.h> |
6 #include <stdlib.h> | |
7 #include <string.h> | |
6 #include <strings.h> | 8 #include <strings.h> |
7 #include "struct.h" | 9 #include "struct.h" |
8 #include "lexer.h" | 10 #include "lexer.h" |
9 | |
10 extern char *malloc(); | |
11 | 11 |
12 extern struct module_def *glob_module_list; | 12 extern struct module_def *glob_module_list; |
13 | 13 |
14 extern char *parser_filename; | 14 extern char *parser_filename; |
15 extern FILE *parser_readF; | 15 extern FILE *parser_readF; |