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

Diff for /src/usr.bin/make/arch.h between version 1.7 and 1.8

version 1.7, 2012/10/02 10:29:30 version 1.8, 2013/04/23 14:32:53
Line 32 
Line 32 
  *      Functions to manipulate libraries, archives and their members.   *      Functions to manipulate libraries, archives and their members.
  */   */
   
 #ifndef TIMESTAMP_TYPE  #include <sys/time.h>
 #include "timestamp_t.h"  
 #endif  
   
 /* Initialization and cleanup */  /* Initialization and cleanup */
 extern void Arch_Init(void);  extern void Arch_Init(void);
Line 53 
Line 51 
  *      Find the modification time of a member of an archive *in the   *      Find the modification time of a member of an archive *in the
  *      archive*, and returns it.   *      archive*, and returns it.
  *      The time is also stored in the member's GNode.  */   *      The time is also stored in the member's GNode.  */
 extern TIMESTAMP Arch_MTime(GNode *);  extern struct timespec Arch_MTime(GNode *);
 /* stamp = Arch_MemMTime(node);  /* stamp = Arch_MemMTime(node);
  *      Find the modification time of a member of an archive and returns it.   *      Find the modification time of a member of an archive and returns it.
  *      To use when the member only exists within the archive.  */   *      To use when the member only exists within the archive.  */
 extern TIMESTAMP Arch_MemMTime(GNode *);  extern struct timespec Arch_MemMTime(GNode *);
   
 #endif  #endif

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8