Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
time
localtime.c
pretty
plain
permalink
blame
history
•
7 lines
•
119 B
1
#include "time_impl.h"
2
3
struct tm *localtime(const time_t *t)
4
{
5
	static struct tm tm;
6
	return __localtime_r(t, &tm);
7
}