index
:
openlinux.git
master
Openlinux source tree
Kacper Fiedorowicz
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libc
/
time
/
ctime.c
blob: bddd30cfeac0504e01b54c679179bf9662a1ce23 (
plain
)
1
2
3
4
5
6
#include <time.h> char *ctime(const time_t *clock) { return asctime(localtime(clock)); }