ctime.c (98B)
1 #include <time.h> 2 3 #undef ctime 4 5 char * 6 ctime(const time_t *t) 7 { 8 return asctime(localtime(t)); 9 }