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