shithub: scc

ref: 4eaac6bfb11cc84259e8b418d4babffdf1c637eb
dir: /lib/c/arch/posix/time.c/

View raw version
#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;
}