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

Diff for /src/usr.bin/make/suff.h between version 1.11 and 1.12

version 1.11, 2020/01/13 14:03:12 version 1.12, 2020/01/13 14:05:21
Line 59 
Line 59 
 /* Suff_PrintAll():  /* Suff_PrintAll():
  *      displays all suffix information. */   *      displays all suffix information. */
 extern void Suff_PrintAll(void);  extern void Suff_PrintAll(void);
 /* XXX internal to suff.c, only the following macro is used elsewhere. */  /* path = find_best_path(name):
 extern void expand_children_from(GNode *, LstNode);   *      find the best path for the name, according to known suffixes.
   
 /* expand_all_children(gn):  
  *      figure out all variable/wildcards expansions in gn.  
  *      TODO pretty sure this is independent from the main suff module.  
  */   */
 #define expand_all_children(gn) \  extern Lst find_best_path(const char *name);
     expand_children_from(gn, Lst_First(&(gn)->children))  
   
 #endif  #endif

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12