mirror of
https://github.com/fluencelabs/musl
synced 2025-06-06 03:21:36 +00:00
9 lines
131 B
C
9 lines
131 B
C
#include <time.h>
|
|
|
|
char *ctime_r(const time_t *t, char *buf)
|
|
{
|
|
struct tm tm;
|
|
localtime_r(t, &tm);
|
|
return asctime_r(&tm, buf);
|
|
}
|