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

Diff for /src/include/time.h between version 1.29 and 1.30

version 1.29, 2016/09/09 18:12:37 version 1.30, 2017/09/05 03:16:13
Line 99 
Line 99 
 #endif  #endif
 #endif  #endif
   
   #if __POSIX_VISIBLE >= 200809
   #ifndef _LOCALE_T_DEFINED_
   #define _LOCALE_T_DEFINED_
   typedef void    *locale_t;
   #endif
   #endif
   
 struct tm {  struct tm {
         int     tm_sec;         /* seconds after the minute [0-60] */          int     tm_sec;         /* seconds after the minute [0-60] */
         int     tm_min;         /* minutes after the hour [0-59] */          int     tm_min;         /* minutes after the hour [0-59] */
Line 158 
Line 165 
   
 #if __POSIX_VISIBLE >= 200112  #if __POSIX_VISIBLE >= 200112
 int clock_getcpuclockid(pid_t, clockid_t *);  int clock_getcpuclockid(pid_t, clockid_t *);
   #endif
   
   #if __POSIX_VISIBLE >= 200809
   size_t strftime_l(char *__restrict, size_t, const char *__restrict,
                   const struct tm *__restrict, locale_t)
                   __attribute__ ((__bounded__(__string__,1,2)));
 #endif  #endif
   
 #if __BSD_VISIBLE  #if __BSD_VISIBLE

Legend:
Removed from v.1.29  
changed lines
  Added in v.1.30