ctime.c - vx32 - Local 9vx git repository for patches.
(HTM) git clone git://r-36.net/vx32
(DIR) Log
(DIR) Files
(DIR) Refs
---
ctime.c (84B)
---
1 #include <time.h>
2
3 char *ctime(const time_t *t)
4 {
5 return asctime(localtime(t));
6 }
7