[BACK]Return to time.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/time.h between version 1.17 and 1.18

version 1.17, 2005/12/13 00:35:22 version 1.18, 2006/01/06 18:53:04
Line 42 
Line 42 
 #define _TIME_H_  #define _TIME_H_
   
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 #include <machine/ansi.h>  #include <machine/_types.h>
   
 #ifndef NULL  #ifndef NULL
 #ifdef  __GNUG__  #ifdef  __GNUG__
Line 52 
Line 52 
 #endif  #endif
 #endif  #endif
   
 #ifdef  _BSD_CLOCK_T_  #ifndef _CLOCK_T_DEFINED_
 typedef _BSD_CLOCK_T_   clock_t;  #define _CLOCK_T_DEFINED_
 #undef  _BSD_CLOCK_T_  typedef __clock_t       clock_t;
 #endif  #endif
   
 #ifdef  _BSD_TIME_T_  #ifndef _TIME_T_DEFINED_
 typedef _BSD_TIME_T_    time_t;  #define _TIME_T_DEFINED_
 #undef  _BSD_TIME_T_  typedef __time_t        time_t;
 #endif  #endif
   
 #ifdef  _BSD_SIZE_T_  #ifndef _SIZE_T_DEFINED_
 typedef _BSD_SIZE_T_    size_t;  #define _SIZE_T_DEFINED_
 #undef  _BSD_SIZE_T_  typedef __size_t        size_t;
 #endif  #endif
   
 #if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE  #if __POSIX_VISIBLE > 0 && __POSIX_VISIBLE < 200112 || __BSD_VISIBLE

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18