summaryrefslogtreecommitdiff
path: root/src/time/time.c
blob: 05e075b95273466114941e2bf3c20f62f19a060c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <time.h>
#include <sys/time.h>
#include "syscall.h"

time_t time(time_t *t)
{
	struct timeval tv;
	__syscall(SYS_gettimeofday, &tv, 0);
	if (t) *t = tv.tv_sec;
	return tv.tv_sec;
}