[BACK]Return to main.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/main.c between version 1.30 and 1.31

version 1.30, 2000/04/03 02:58:46 version 1.31, 2000/06/10 01:32:23
Line 834 
Line 834 
         Lst_Destroy(targs, NOFREE);          Lst_Destroy(targs, NOFREE);
         Lst_Destroy(variables, NOFREE);          Lst_Destroy(variables, NOFREE);
         Lst_Destroy(makefiles, NOFREE);          Lst_Destroy(makefiles, NOFREE);
         Lst_Destroy(create, (void (*) __P((ClientData))) free);          Lst_Destroy(create, (SimpleProc)free);
   
         /* print the graph now it's been processed if the user requested it */          /* print the graph now it's been processed if the user requested it */
         if (DEBUG(GRAPH2))          if (DEBUG(GRAPH2))
Line 1211 
Line 1211 
 }  }
   
   
 int  void
 PrintAddr(a, b)  PrintAddr(a)
     ClientData a;      ClientData a;
     ClientData b;  
 {  {
     printf("%lx ", (unsigned long) a);      printf("%lx ", (unsigned long) a);
     return b ? 0 : 0;  
 }  }

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31