mariadb/linux/tests/test-gettimeofday.c

15 lines
212 B
C
Raw Normal View History

#include <stdio.h>
#include <assert.h>
#include <toku_time.h>
int main(void) {
int r;
struct timeval tv;
struct timezone tz;
r = gettimeofday(&tv, &tz);
assert(r == 0);
return 0;
}