summaryrefslogtreecommitdiff
path: root/src/time/gettimeofday.c
blob: 521b4d576811fef4376b10f9de6d0e47fcd7d108 (plain) (blame)
1
2
3
4
5
6
7
8
#include <sys/time.h>
#include "syscall.h"

int gettimeofday(struct timeval *tv, void *tz)
{
	__syscall(__NR_gettimeofday, tv, 0);
	return 0;
}