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

Diff for /src/include/time.h between version 1.22 and 1.23

version 1.22, 2012/05/10 19:13:12 version 1.23, 2012/10/01 00:21:20
Line 123 
Line 123 
 struct tm *gmtime(const time_t *);  struct tm *gmtime(const time_t *);
 struct tm *localtime(const time_t *);  struct tm *localtime(const time_t *);
 time_t mktime(struct tm *);  time_t mktime(struct tm *);
 size_t strftime(char *, size_t, const char *, const struct tm *)  size_t strftime(char *__restrict, size_t, const char *__restrict,
                   const struct tm *__restrict)
                 __attribute__ ((__bounded__(__string__,1,2)));                  __attribute__ ((__bounded__(__string__,1,2)));
 time_t time(time_t *);  time_t time(time_t *);
   
 #if __XPG_VISIBLE >= 400  #if __XPG_VISIBLE >= 400
 char *strptime(const char *, const char *, struct tm *);  char *strptime(const char *__restrict, const char *__restrict,
                   struct tm *__restrict);
 #endif  #endif
   
 #if __POSIX_VISIBLE >= 199506  #if __POSIX_VISIBLE >= 199506
 char *asctime_r(const struct tm *, char *)  char *asctime_r(const struct tm *__restrict, char *__restrict)
                 __attribute__ ((__bounded__(__minbytes__,2,26)));                  __attribute__ ((__bounded__(__minbytes__,2,26)));
 char *ctime_r(const time_t *, char *)  char *ctime_r(const time_t *, char *)
                 __attribute__ ((__bounded__(__minbytes__,2,26)));                  __attribute__ ((__bounded__(__minbytes__,2,26)));
 struct tm *gmtime_r(const time_t *, struct tm *);  struct tm *gmtime_r(const time_t *__restrict, struct tm *__restrict);
 struct tm *localtime_r(const time_t *, struct tm *);  struct tm *localtime_r(const time_t *__restrict, struct tm *__restrict);
 #endif  #endif
   
 #if __POSIX_VISIBLE  #if __POSIX_VISIBLE

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