From c09e434e50a2e69664cce10032e5455105da675c Mon Sep 17 00:00:00 2001 From: dt Date: Mon, 4 Jan 1999 20:45:20 +0000 Subject: Make ctime_r, asctime_r, gmtime_r, and localtime_r available in libc. --- include/time.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'include/time.h') diff --git a/include/time.h b/include/time.h index 5840977..a9baa50 100644 --- a/include/time.h +++ b/include/time.h @@ -131,18 +131,15 @@ time_t mktime __P((struct tm *)); size_t strftime __P((char *, size_t, const char *, const struct tm *)); time_t time __P((time_t *)); -#ifdef _THREAD_SAFE -char *asctime_r __P((const struct tm *, char *)); -char *ctime_r __P((const time_t *, char *)); -struct tm *gmtime_r __P((const time_t *, struct tm *)); -struct tm *localtime_r __P((const time_t *, struct tm *)); -#endif - #ifndef _ANSI_SOURCE void tzset __P((void)); #endif /* not ANSI */ #if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE) +char *asctime_r __P((const struct tm *, char *)); +char *ctime_r __P((const time_t *, char *)); +struct tm *gmtime_r __P((const time_t *, struct tm *)); +struct tm *localtime_r __P((const time_t *, struct tm *)); char *strptime __P((const char *, const char *, struct tm *)); char *timezone __P((int, int)); void tzsetwall __P((void)); -- cgit v1.1