summaryrefslogtreecommitdiffstats
path: root/contrib/blacklist/port/clock_gettime.c
blob: 284bd81769018feac543d089e6794c52e50d35be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <time.h>
#include <sys/time.h>

int
clock_gettime(int clock __unused, struct timespec *ts)
{
	struct timeval tv;
	if (gettimeofday(&tv, NULL) == -1)
		return -1;
	ts->tv_sec = tv.tv_sec;
	ts->tv_nsec = tv.tv_usec * 1000;
	return 0;
}
OpenPOWER on IntegriCloud