mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
06f9a5b627
See #594
9 lines
268 B
C
9 lines
268 B
C
#include "libc/calls/weirdtypes.h"
|
|
#include "libc/time/struct/tm.h"
|
|
#include "libc/time/time.h"
|
|
|
|
char *ctime_r(const time_t *timep, char buf[hasatleast 26]) {
|
|
struct tm mytm;
|
|
struct tm *tmp = localtime_r(timep, &mytm);
|
|
return tmp ? asctime_r(tmp, buf) : NULL;
|
|
}
|