summaryrefslogtreecommitdiffstats
path: root/Makefile.d/clock_gettime_test.c
blob: 000aa425fb81b92043a486eb1e8e7363cfd4a668 (plain)
1
2
3
4
5
6
7
8
9
#include <time.h>
int main(int argc, char **argv)
{
	(void)argc;
	(void)argv;
	struct timespec res;
	clock_gettime(CLOCK_REALTIME, &res);
	return 0;
}