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

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/include/time.h between version 1.25 and 1.26

version 1.25, 2000/07/06 12:46:48 version 1.26, 2001/03/29 19:06:39
Line 99  double difftime __P((time_t, time_t));
Line 99  double difftime __P((time_t, time_t));
 struct tm *gmtime __P((const time_t *));  struct tm *gmtime __P((const time_t *));
 struct tm *localtime __P((const time_t *));  struct tm *localtime __P((const time_t *));
 time_t mktime __P((struct tm *));  time_t mktime __P((struct tm *));
 size_t strftime __P((char *, size_t, const char *, const struct tm *));  size_t strftime __P((char * __restrict, size_t, const char * __restrict,
       const struct tm * __restrict));
 time_t time __P((time_t *));  time_t time __P((time_t *));
   
 #if !defined(_ANSI_SOURCE)  #if !defined(_ANSI_SOURCE)
Line 112  void tzset __P((void));
Line 113  void tzset __P((void));
  */   */
 #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \  #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \
     (_XOPEN_SOURCE - 0) >= 4      (_XOPEN_SOURCE - 0) >= 4
 char *strptime __P((const char *, const char *, struct tm *));  char *strptime __P((const char * __restrict, const char * __restrict,
       struct tm * __restrict));
 #endif  #endif
   
 #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \  #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \
Line 135  int timer_settime __P((timer_t, int, con
Line 137  int timer_settime __P((timer_t, int, con
 #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \  #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || \
     (_POSIX_C_SOURCE - 0) >= 199506L || (_XOPEN_SOURCE - 0) >= 500 || \      (_POSIX_C_SOURCE - 0) >= 199506L || (_XOPEN_SOURCE - 0) >= 500 || \
     defined(_REENTRANT)      defined(_REENTRANT)
 char *asctime_r __P((const struct tm *, char *));  char *asctime_r __P((const struct tm * __restrict, char * __restrict));
 char *ctime_r __P((const time_t *, char *));  char *ctime_r __P((const time_t *, char *));
 struct tm *gmtime_r __P((const time_t *, struct tm *));  struct tm *gmtime_r __P((const time_t * __restrict, struct tm * __restrict));
 struct tm *localtime_r __P((const time_t *, struct tm *));  struct tm *localtime_r __P((const time_t * __restrict, struct tm * __restrict));
 #endif  #endif
   
 #if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)  #if !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

CVSweb <webmaster@jp.NetBSD.org>