repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sys/mman.h: add MAP_HUGE_16KB from linux v5.10
[musl.git]
/
compat
/
time32
/
ctime32.c
blob
a057274e155ab7affe3b8e8a015603eb96f707cc
1
#include
"time32.h"
2
#include <time.h>
3
4
char
*
__ctime32
(
time32_t
*
t
)
5
{
6
return
ctime
(&(
time_t
){*
t
});
7
}