mirror of git://git.musl-libc.org/musl
8 lines
102 B
C
8 lines
102 B
C
|
#include "time32.h"
|
||
|
#include <time.h>
|
||
|
|
||
|
char *__ctime32(time32_t *t)
|
||
|
{
|
||
|
return ctime(&(time_t){*t});
|
||
|
}
|