mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
7 lines
115 B
C
Vendored
7 lines
115 B
C
Vendored
#include "time32.h"
|
|
#include <time.h>
|
|
|
|
struct tm *__localtime32(time32_t *t)
|
|
{
|
|
return localtime(&(time_t){*t});
|
|
}
|