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

Diff for /src/usr.bin/make/dir.c between version 1.37 and 1.38

version 1.37, 2001/11/11 12:35:02 version 1.38, 2002/05/27 03:14:21
Line 248 
Line 248 
     const char          *file;      const char          *file;
     TIMESTAMP           t;      TIMESTAMP           t;
 {  {
     unsigned            slot;      unsigned int        slot;
     const char          *end = NULL;      const char          *end = NULL;
     struct file_stamp   *n;      struct file_stamp   *n;
   
Line 276 
Line 276 
     Path                *p;      Path                *p;
     const char          *file;      const char          *file;
 {  {
     unsigned            slot;      unsigned int        slot;
     const char          *end = NULL;      const char          *end = NULL;
     char                *n;      char                *n;
     struct ohash        *h = &p->files;      struct ohash        *h = &p->files;
Line 306 
Line 306 
     struct ohash        *h;      struct ohash        *h;
 {  {
     void                *e;      void                *e;
     unsigned            i;      unsigned int        i;
   
     for (e = ohash_first(h, &i); e != NULL; e = ohash_next(h, &i))      for (e = ohash_first(h, &i); e != NULL; e = ohash_next(h, &i))
         free(e);          free(e);

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38