[BACK]Return to suff.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / make

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/make/suff.c between version 1.162 and 1.163

version 1.162, 2020/09/25 16:27:15 version 1.163, 2020/09/25 16:28:29
Line 186  typedef struct Suff {
Line 186  typedef struct Suff {
 /*  /*
  * Structure used in the search for implied sources.   * Structure used in the search for implied sources.
  */   */
 typedef struct _Src {  typedef struct Src {
     char            *file;      /* The file to look for */      char            *file;      /* The file to look for */
     char            *pref;      /* Prefix from which file was formed */      char            *pref;      /* Prefix from which file was formed */
     Suff            *suff;      /* The suffix on the file */      Suff            *suff;      /* The suffix on the file */
     struct _Src     *parent;    /* The Src for which this is a source */      struct Src     *parent;     /* The Src for which this is a source */
     GNode           *node;      /* The node describing the file */      GNode           *node;      /* The node describing the file */
     int             children;   /* Count of existing children (so we don't free      int             children;   /* Count of existing children (so we don't free
                                  * this thing too early or never nuke it) */                                   * this thing too early or never nuke it) */

Legend:
Removed from v.1.162  
changed lines
  Added in v.1.163

CVSweb <webmaster@jp.NetBSD.org>