initial check-in, version 0.5.0
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#include <time.h>
|
||||
|
||||
char *ctime_r(const time_t *t, char *buf)
|
||||
{
|
||||
struct tm tm;
|
||||
localtime_r(t, &tm);
|
||||
return asctime_r(&tm, buf);
|
||||
}
|
||||
Reference in New Issue
Block a user