mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-09 00:02:17 +03:00
8 lines
115 B
C
8 lines
115 B
C
|
#include "time32.h"
|
||
|
#include <time.h>
|
||
|
|
||
|
struct tm *__localtime32(time32_t *t)
|
||
|
{
|
||
|
return localtime(&(time_t){*t});
|
||
|
}
|