Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
compat
time32
ctime32.c
pretty
plain
permalink
blame
history
•
7 lines
•
102 B
1
#include "time32.h"
2
#include <time.h>
3
4
char *__ctime32(time32_t *t)
5
{
6
	return ctime(&(time_t){*t});
7
}