toaruos/libc/time/ctime.c

10 lines
168 B
C

#include <time.h>
#include <sys/time.h>
/*
* TODO: Also supposed to set tz values...
*/
char * ctime(const time_t * timep) {
return asctime(localtime(timep));
}