mirror of
https://github.com/fluencelabs/musl
synced 2025-06-04 18:41:34 +00:00
9 lines
144 B
C
9 lines
144 B
C
|
#include <time.h>
|
||
|
|
||
|
char *__asctime(const struct tm *, char *);
|
||
|
|
||
|
char *asctime_r(const struct tm *tm, char *buf)
|
||
|
{
|
||
|
return __asctime(tm, buf);
|
||
|
}
|