blob: c0a3f4978ed959fc2cdd22dcf83a1b80e2997bae [file] [log] [blame]
#include <time.h>
char* ctime(const time_t* t) {
return asctime(localtime(t));
}