summaryrefslogtreecommitdiff
path: root/src/sys/time/gettimeofday.c
blob: 0cd2061f96863a777a30dbb0b309da8d80b93945 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/time.h>

int gettimeofday(struct timeval *restrict tp, void *restrict tzp)
{
	return 0;
}

/*
XOPEN(400)
*/