[BACK]Return to time.h CVS log [TXT][DIR] Up to [local] / prex-old / usr / include

Diff for /prex-old/usr/include/time.h between version 1.1.1.1 and 1.1.1.1.2.1

version 1.1.1.1, 2008/06/03 10:38:47 version 1.1.1.1.2.1, 2008/08/13 17:12:36
Line 39 
Line 39 
   
 #include <sys/param.h>  #include <sys/param.h>
   
 #include <machine/ansi.h>  
   
 #ifndef NULL  #ifndef NULL
 #define NULL    0  #define NULL    0
 #endif  #endif
   
 #ifdef  _BSD_CLOCK_T_  #if !defined(_CLOCK_T)
 typedef _BSD_CLOCK_T_   clock_t;  #define _CLOCK_T
 #undef  _BSD_CLOCK_T_  typedef unsigned long   clock_t;        /* relative time in a specified resolution */
 #endif  #endif
   
 #ifdef  _BSD_TIME_T_  #if !defined(_SIZE_T)
 typedef _BSD_TIME_T_    time_t;  #define _SIZE_T
 #undef  _BSD_TIME_T_  typedef unsigned int    size_t;         /* size of something in bytes */
 #endif  #endif
   
 #ifdef  _BSD_SIZE_T_  #if !defined(_TIME_T)
 typedef _BSD_SIZE_T_    size_t;  #define _TIME_T
 #undef  _BSD_SIZE_T_  typedef long            time_t;         /* time of day in seconds */
 #endif  #endif
   
 struct tm {  struct tm {

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.1.2.1

CVSweb