ref: f2e04e5f2f85f9dda6d813a9a47a95995de1e5aa
dir: /src/libc/arch/posix/time.c/
#include <time.h>
struct timeval {
time_t tv_sec;
int tv_usec; /* TODO use a arch type */
};
int
_gettimeofday(struct timeval * restrict tp, void * restrict tzp);
time_t
time(time_t *t)
{
struct timeval tv;
if (_gettimeofday(&tv, NULL) == -1)
return -1;
if (t)
*t =tv.tv_sec;
return tv.tv_sec;
}