aboutsummaryrefslogtreecommitdiff
path: root/src/time/timespec_get.c
blob: 4915e52ce20bc2c320833d4805a19a78d0f8819d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <time.h>

/* There is no other implemented value than TIME_UTC; all other values
 * are considered erroneous. */
int timespec_get(struct timespec * ts, int base)
{
	if (base != TIME_UTC) return 0;
	int ret = __clock_gettime(CLOCK_REALTIME, ts);
	return ret < 0 ? 0 : base;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif