comparison ueda/sverp/elaborate.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 * Here we elaborate the hierarchy and create our flat netlist. 2 * Here we elaborate the hierarchy and create our flat netlist.
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" /* for MAXDIGITS */ 10 #include "lexer.h" /* for MAXDIGITS */
9
10 extern char *malloc();
11 11
12 struct output_net *output_net_head; 12 struct output_net *output_net_head;
13 struct output_element *output_element_head; 13 struct output_element *output_element_head;
14 int total_good_nets, total_singular_nets, total_null_nets; 14 int total_good_nets, total_singular_nets, total_null_nets;
15 int total_output_elements; 15 int total_output_elements;