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

Diff for /src/usr.bin/make/gnode.h between version 1.23 and 1.24

version 1.23, 2012/10/09 19:45:34 version 1.24, 2013/04/23 14:32:53
Line 27 
Line 27 
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.   * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */   */
   
 #ifndef TIMESTAMP_TYPE  #include <sys/time.h>
 #include "timestamp_t.h"  
 #endif  
 #ifndef LIST_TYPE  #ifndef LIST_TYPE
 #include "lst_t.h"  #include "lst_t.h"
 #endif  #endif
Line 144 
Line 142 
   
     int unmade;         /* The number of unmade children */      int unmade;         /* The number of unmade children */
   
     TIMESTAMP mtime;    /* Its modification time */      struct timespec mtime;      /* Its modification time */
     TIMESTAMP cmtime;   /* The modification time of its youngest      struct timespec cmtime;     /* The modification time of its youngest
                          * child */                                   * child */
   
     GNode *impliedsrc;      GNode *impliedsrc;
     LIST cohorts;       /* Other nodes for the :: operator */      LIST cohorts;       /* Other nodes for the :: operator */

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.24