mariadb/windows/tests/test-gettimeofday.c
Yoni Fogel bc9fd74c80 Merge 2.0.0 back into main
svn merge --accept=postpone -r 12123:12373 ../../mysql.branches/2.0.0/tokudb/

git-svn-id: file:///svn/toku/tokudb@12375 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:53 -04:00

15 lines
251 B
C

#include <test.h>
#include <stdio.h>
#include <assert.h>
#include <toku_time.h>
int test_main(int argc, char *argv[]) {
int r;
struct timeval tv;
struct timezone tz;
r = gettimeofday(&tv, 0);
assert(r == 0);
return 0;
}