1
0
Fork 0
arangodb/cmake/test_clock_gettime.c

10 lines
165 B
C

#include <stdio.h>
#include <time.h>
int main() {
printf("-- testing clock_gettime\n");
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
return 0;
}