c13eae6ae12fa7d1f93fc76cc617752df09297b0
[repair.git] / Repair / RepairCompiler / MCC / ex_test.cc
1 #include "ex_aux.h"
2
3 struct Node {
4      int data;
5      struct Node *next;
6      struct Node *prev;
7 };
8
9 int main(int argc, char **argv) {
10   struct Node * head =0;//(struct Node *) malloc(sizeof (struct Node));
11   //  head->next=0;
12   //head->prev=0;
13
14 #include "ex.cc"
15   
16   
17 }