summaryrefslogtreecommitdiffstats
path: root/try_clock_gettime.c
blob: 239900e241db2750bc4f92fdeb94a550d911003c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include <unistd.h>
#include <time.h>

int main(void)
{
	struct timespec s;
	clock_gettime(CLOCK_REALTIME, &s);
	return EXIT_SUCCESS;
}