mirror of
git://git.musl-libc.org/musl
synced 2025-01-11 09:09:45 +00:00
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});
|
||
|
}
|