Files

13 lines
151 B
C
Raw Permalink Normal View History

2022-05-10 18:25:11 +01:00
#include <time.h>
#include <__time.h>
time_t time(time_t *p)
{
time_t out = __sys_time();
if (p) {
*p = out;
}
return out;
}