4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00

15 lines
177 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
/*
* ctime_r.c
*/
#include <time.h>
char *
ctime_r (const time_t * tim_p,
2000-02-17 19:39:52 +00:00
char * result)
{
struct tm tm;
return asctime_r (localtime_r (tim_p, &tm), result);
}