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

Diff for /src/usr.bin/make/for.c between version 1.16 and 1.17

version 1.16, 2000/06/10 01:32:22 version 1.17, 2000/06/10 01:41:05
Line 111 
Line 111 
     unsigned long       level;          /* Nesting level                */      unsigned long       level;          /* Nesting level                */
 };  };
   
 static void ForExec __P((ClientData, ClientData));  static void ForExec __P((void *, void *));
 static void build_words_list __P((Lst, const char *));  static void build_words_list __P((Lst, const char *));
   
 /* Cut a string into words, stuff that into list.  */  /* Cut a string into words, stuff that into list.  */
Line 270 
Line 270 
  */   */
 static void  static void
 ForExec(namep, argp)  ForExec(namep, argp)
     ClientData namep;      void *namep;
     ClientData argp;      void *argp;
 {  {
     char *name = (char *)namep;      char *name = (char *)namep;
     For *arg = (For *)argp;      For *arg = (For *)argp;

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17