Change prototypes for gmtime_r() and localtime_r() in accordance with

IEEE pthreads specification.
This commit is contained in:
Jeffrey Hsu 1996-11-11 09:22:13 +00:00
parent 7d9120c451
commit b0e998dc26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19639

View file

@ -102,9 +102,9 @@ time_t time __P((time_t *));
#ifdef _THREAD_SAFE
int asctime_r __P((const struct tm *, char *, int));
int ctime_r __P((const time_t *, char *, int));
int gmtime_r __P((const time_t *, struct tm *));
int localtime_r __P((const time_t *, struct tm *));
int ctime_r __P((const time_t *, char *, int));
struct tm *gmtime_r __P((const time_t *, struct tm *));
struct tm *localtime_r __P((const time_t *, struct tm *));
#endif
#ifndef _ANSI_SOURCE